rename .themestyle.sh to waybar.themestyle

This commit is contained in:
Spangenberg
2023-10-22 15:29:05 +02:00
parent 2165ad6e9a
commit d7b205489d
2 changed files with 7 additions and 7 deletions

View File

@ -30,8 +30,8 @@ done
listNames=${listNames::-2}
choice=$(echo -e "$listNames" | rofi -dmenu -config ~/dotfiles/rofi/config-wallpaper.rasi -no-show-icons -width 30 -p "Themes" -format i)
# Set new theme by writing the theme information to ~/.cache/.themestyle.sh
# Set new theme by writing the theme information to ~/.cache/waybar.themestyle
if [ "$choice" ]; then
echo "${listThemes[$choice+1]}" > ~/.cache/.themestyle.sh
echo "${listThemes[$choice+1]}" > ~/.cache/waybar.themestyle
~/dotfiles/waybar/launch.sh
fi