From c6ac6de3666294fe25935b4460168e7f0a1fa57b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 09:48:11 +0100 Subject: [PATCH] Correct checks --- migrations/1752643269.sh | 2 +- migrations/1752725616.sh | 2 +- migrations/1752874371.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/migrations/1752643269.sh b/migrations/1752643269.sh index 55cb668e..47d2cf79 100644 --- a/migrations/1752643269.sh +++ b/migrations/1752643269.sh @@ -1,5 +1,5 @@ echo "Add new matte black theme" -if [[ ! -L "~/.config/omarchy/themes/matte-black" ]]; then +if [[ ! -L $HOME/.config/omarchy/themes/matte-black ]]; then ln -snf ~/.local/share/omarchy/themes/matte-black ~/.config/omarchy/themes/ fi diff --git a/migrations/1752725616.sh b/migrations/1752725616.sh index 5f94c05e..5afc394b 100644 --- a/migrations/1752725616.sh +++ b/migrations/1752725616.sh @@ -11,6 +11,6 @@ if [[ -f ~/.local/share/applications/blueberry.desktop ]]; then omarchy-refresh-waybar fi -if [[ ! -L "~/.config/omarchy/themes/rose-pine" ]]; then +if [[ ! -L $HOME/.config/omarchy/themes/rose-pine ]]; then ln -snf ~/.local/share/omarchy/themes/rose-pine ~/.config/omarchy/themes/ fi diff --git a/migrations/1752874371.sh b/migrations/1752874371.sh index 669c3b7d..20cd3ad1 100644 --- a/migrations/1752874371.sh +++ b/migrations/1752874371.sh @@ -1,5 +1,5 @@ echo "Add Catppuccin Latte light theme" -if [[ ! -L "~/.config/omarchy/themes/catppuccin-latte" ]]; then +if [[ ! -L $HOME/.config/omarchy/themes/catppuccin-latte ]]; then ln -snf ~/.local/share/omarchy/themes/catppuccin-latte ~/.config/omarchy/themes/ fi