From 1fa2b62fba90257d1e2078f0892d9ea32adcf68b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 25 Jul 2025 22:09:32 -0400 Subject: [PATCH] Make it safe to rerun the theme.sh installer Closes #343 --- install/desktop/theme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/desktop/theme.sh b/install/desktop/theme.sh index 12a29ae..d09065a 100644 --- a/install/desktop/theme.sh +++ b/install/desktop/theme.sh @@ -10,7 +10,7 @@ gsettings set org.gnome.desktop.interface color-scheme "prefer-dark" # Setup theme links mkdir -p ~/.config/omarchy/themes -for f in ~/.local/share/omarchy/themes/*; do ln -s "$f" ~/.config/omarchy/themes/; done +for f in ~/.local/share/omarchy/themes/*; do ln -nfs "$f" ~/.config/omarchy/themes/; done # Set initial theme mkdir -p ~/.config/omarchy/current