Hyprland-dotfiles/waybar/themeswitcher.sh

22 lines
740 B
Bash
Raw Normal View History

2023-10-09 09:50:47 -04:00
#!/bin/bash
options=$(find ~/dotfiles/waybar/styles/ -maxdepth 2 -type d)
listThemes=""
for value in $options
do
if [ ! $value == "$HOME/dotfiles/waybar/styles/" ]; then
if [ $(find $value -maxdepth 1 -type d | wc -l) = 1 ]; then
result=$(echo $value | sed "s#$HOME/dotfiles/waybar/styles/#/#g")
2023-10-09 11:27:03 -04:00
IFS='/' read -ra arrThemes <<< "$result"
echo $arrThemes
listThemes+="/${arrThemes[1]};$result\n"
2023-10-09 09:50:47 -04:00
fi
fi
done
2023-10-09 11:27:03 -04:00
2023-10-09 09:50:47 -04:00
listThemes=${listThemes::-2}
2023-10-09 11:27:03 -04:00
2023-10-09 09:50:47 -04:00
choice=$(echo -e "$listThemes" | rofi -dmenu -config ~/dotfiles/rofi/config-wallpaper.rasi -no-show-icons -width 30 -p "Themes")
2023-10-09 11:27:03 -04:00
if [ "$choice" ]; then
echo "$choice" > ~/.cache/.themestyle.sh
~/dotfiles/waybar/launch.sh
fi