mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
36 lines
1.3 KiB
Bash
Executable File
36 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
CHROMIUM_THEME=~/.config/omarchy/current/theme/chromium.theme
|
|
|
|
if omarchy-cmd-present chromium || omarchy-cmd-present helium-browser || omarchy-cmd-present brave; then
|
|
if [[ -f $CHROMIUM_THEME ]]; then
|
|
THEME_RGB_COLOR=$(<$CHROMIUM_THEME)
|
|
THEME_HEX_COLOR=$(printf '#%02x%02x%02x' ${THEME_RGB_COLOR//,/ })
|
|
else
|
|
# Use a default, neutral grey if theme doesn't have a color
|
|
THEME_RGB_COLOR="28,32,39"
|
|
THEME_HEX_COLOR="#1c2027"
|
|
fi
|
|
|
|
if omarchy-cmd-present chromium; then
|
|
rm -f /etc/chromium/policies/managed/color.json
|
|
chromium --no-startup-window --set-theme-color="$THEME_RGB_COLOR"
|
|
|
|
if [[ -f ~/.config/omarchy/current/theme/light.mode ]]; then
|
|
chromium --no-startup-window --set-color-scheme="light"
|
|
else
|
|
chromium --no-startup-window --set-color-scheme="dark"
|
|
fi
|
|
fi
|
|
|
|
if omarchy-cmd-present helium-browser; then
|
|
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/chromium/policies/managed/color.json" >/dev/null
|
|
helium-browser --no-startup-window --refresh-platform-policy
|
|
fi
|
|
|
|
if omarchy-cmd-present brave; then
|
|
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/brave/policies/managed/color.json" >/dev/null
|
|
brave --refresh-platform-policy --no-startup-window
|
|
fi
|
|
fi
|