2020-08-19 15:58:08 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ -f "$HOME/.dark" ]
|
|
|
|
then
|
|
|
|
sed -i -e 's/kitty_light.conf/kitty_dark.conf/' $HOME/.config/kitty/kitty.conf
|
|
|
|
theme='Mint-Y-Dark-Pink'
|
2020-08-20 07:27:59 +00:00
|
|
|
gsettings set org.cinnamon.desktop.background picture-uri "file://$HOME/wallpaper/dark.png"
|
2020-08-19 15:58:08 +00:00
|
|
|
gsettings set org.cinnamon.desktop.interface cursor-theme 'DMX-White'
|
|
|
|
gsettings set org.cinnamon.desktop.wm.preferences theme 'Mint-Y-Dark'
|
|
|
|
gsettings set org.cinnamon.theme name "$theme"
|
|
|
|
gsettings set org.cinnamon.desktop.interface icon-theme "$theme"
|
|
|
|
gsettings set org.cinnamon.desktop.interface gtk-theme "$theme"
|
2021-12-21 14:45:37 +00:00
|
|
|
gsettings set org.gnome.desktop.background picture-uri "file://$HOME/wallpaper/dark.png"
|
2020-08-19 15:58:08 +00:00
|
|
|
theme=dark
|
|
|
|
else
|
|
|
|
sed -i -e 's/kitty_dark.conf/kitty_light.conf/' $HOME/.config/kitty/kitty.conf
|
|
|
|
theme="Mint-Y-Pink"
|
2020-08-20 07:27:59 +00:00
|
|
|
gsettings set org.cinnamon.desktop.background picture-uri "file://$HOME/wallpaper/light.png"
|
2020-08-19 15:58:08 +00:00
|
|
|
gsettings set org.cinnamon.desktop.interface cursor-theme 'DMX-Black'
|
|
|
|
gsettings set org.cinnamon.desktop.wm.preferences theme 'Mint-Y'
|
|
|
|
gsettings set org.cinnamon.theme name "$theme"
|
|
|
|
gsettings set org.cinnamon.desktop.interface icon-theme "$theme"
|
|
|
|
gsettings set org.cinnamon.desktop.interface gtk-theme "$theme"
|
2021-12-21 14:45:37 +00:00
|
|
|
gsettings set org.gnome.desktop.background picture-uri "file://$HOME/wallpaper/light.png"
|
2020-08-19 15:58:08 +00:00
|
|
|
theme=light
|
|
|
|
fi
|
|
|
|
|
2020-09-29 16:51:02 +00:00
|
|
|
for socket in $(find /tmp/ -maxdepth 1 -name "kitty-$USER-*")
|
|
|
|
do
|
|
|
|
if which kitty > /dev/null; then
|
2021-12-21 14:45:37 +00:00
|
|
|
kitty @ --to unix:$socket set-colors --configured $HOME/darkrc/kitty_$theme.conf >/dev/null
|
2020-09-29 16:51:02 +00:00
|
|
|
fi
|
|
|
|
done
|
2020-08-19 15:58:08 +00:00
|
|
|
|
2020-11-27 09:02:32 +00:00
|
|
|
pkill -SIGUSR1 conky
|