mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
16 lines
585 B
Bash
16 lines
585 B
Bash
echo "Make light themes possible"
|
|
if [[ -f ~/.local/share/applications/blueberry.desktop ]]; then
|
|
rm -f ~/.local/share/applications/blueberry.desktop
|
|
rm -f ~/.local/share/applications/org.pulseaudio.pavucontrol.desktop
|
|
update-desktop-database ~/.local/share/applications/
|
|
|
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
|
|
|
omarchy-refresh-waybar
|
|
fi
|
|
|
|
if [[ ! -L "~/.config/omarchy/themes/rose-pine" ]]; then
|
|
ln -snf ~/.local/share/omarchy/themes/rose-pine ~/.config/omarchy/themes/
|
|
fi
|