1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-16 04:47:18 +00:00
Dotfiles/.config/polybar/scripts/style-switch.sh
2020-07-27 07:59:00 +03:00

16 lines
530 B
Bash
Executable file

#!/bin/bash
## Author : Aditya Shakya
## Github : adi1090x
SDIR="$HOME/.config/polybar/scripts"
MENU="$(rofi -sep "|" -dmenu -i -p 'Select' -location 5 -columns 1 -xoffset -350 -yoffset -40 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< "> Feather|> Material|> Siji|> Typicons")"
case "$MENU" in
## Light Colors
*Feather) $SDIR/style.sh -Feather ;;
*Material) $SDIR/style.sh -Material ;;
*Siji) $SDIR/style.sh -Siji ;;
*Typicons) $SDIR/style.sh -Typicons ;;
esac