mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
17 lines
588 B
Bash
17 lines
588 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 $HOME/.config/omarchy/themes/rose-pine ]]; then
|
|
ln -snf ~/.local/share/omarchy/themes/rose-pine ~/.config/omarchy/themes/
|
|
fi
|