Use omarchy-chromium-bin to give live theme changes

This commit is contained in:
David Heinemeier Hansson
2025-08-14 14:46:59 +02:00
parent a9d70e6879
commit bf49a86e98
14 changed files with 44 additions and 1 deletions

24
migrations/1755164105.sh Normal file
View File

@@ -0,0 +1,24 @@
echo "Switch to Omarchy Chromium for synchronized theme switching"
set_theme_colors() {
if [[ -f ~/.config/omarchy/current/theme/chromium.theme ]] && command -v chromium &>/dev/null; then
chromium --no-startup-window --set-theme-color="$(<~/.config/omarchy/current/theme/chromium.theme)"
else
# Use a default, neutral grey if theme doesn't have a color
chromium --no-startup-window --set-theme-color="28,32,39"
fi
}
if command -v chromium &>/dev/null; then
yay -Rns chromium
yay -Sy omarchy-chromium-bin
if pgrep -x chromium; then
if gum confirm "Chromium must be restarted. Ready?"; then
pkill -x chromium
set_theme_colors
fi
else
set_theme_colors
fi
fi