mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-02 23:17:18 +00:00
16 lines
530 B
Bash
Executable file
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
|