Fix path to background image

This commit is contained in:
Talia 2020-08-20 09:27:59 +02:00
parent 6d1d244f8b
commit 1651c3d89b
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ if [ -f "$HOME/.dark" ]
then then
sed -i -e 's/kitty_light.conf/kitty_dark.conf/' $HOME/.config/kitty/kitty.conf sed -i -e 's/kitty_light.conf/kitty_dark.conf/' $HOME/.config/kitty/kitty.conf
theme='Mint-Y-Dark-Pink' theme='Mint-Y-Dark-Pink'
gsettings set org.cinnamon.desktop.background picture-uri 'file:///home/darkwiiplayer/wallpaper/dark.png' gsettings set org.cinnamon.desktop.background picture-uri "file://$HOME/wallpaper/dark.png"
gsettings set org.cinnamon.desktop.interface cursor-theme 'DMX-White' 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.desktop.wm.preferences theme 'Mint-Y-Dark'
gsettings set org.cinnamon.theme name "$theme" gsettings set org.cinnamon.theme name "$theme"
@ -14,7 +14,7 @@ then
else else
sed -i -e 's/kitty_dark.conf/kitty_light.conf/' $HOME/.config/kitty/kitty.conf sed -i -e 's/kitty_dark.conf/kitty_light.conf/' $HOME/.config/kitty/kitty.conf
theme="Mint-Y-Pink" theme="Mint-Y-Pink"
gsettings set org.cinnamon.desktop.background picture-uri 'file:///home/darkwiiplayer/wallpaper/light.png' gsettings set org.cinnamon.desktop.background picture-uri "file://$HOME/wallpaper/light.png"
gsettings set org.cinnamon.desktop.interface cursor-theme 'DMX-Black' gsettings set org.cinnamon.desktop.interface cursor-theme 'DMX-Black'
gsettings set org.cinnamon.desktop.wm.preferences theme 'Mint-Y' gsettings set org.cinnamon.desktop.wm.preferences theme 'Mint-Y'
gsettings set org.cinnamon.theme name "$theme" gsettings set org.cinnamon.theme name "$theme"