diff options
author | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2023-01-05 19:14:29 -0300 |
---|---|---|
committer | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2023-01-05 19:14:29 -0300 |
commit | 1b03fa0b512c5256ac70412275a4056f782f7abf (patch) | |
tree | 4d9f4ef300e4809541cdd42ee55353915b40ef9a /polybar/cuts/scripts/style-switch.sh | |
parent | 8dc8f2d52338fd87e7763995e6732f5a295300e8 (diff) |
Diffstat (limited to 'polybar/cuts/scripts/style-switch.sh')
-rwxr-xr-x | polybar/cuts/scripts/style-switch.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/polybar/cuts/scripts/style-switch.sh b/polybar/cuts/scripts/style-switch.sh deleted file mode 100755 index e693e53..0000000 --- a/polybar/cuts/scripts/style-switch.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -SDIR="$HOME/.config/polybar/cuts/scripts" - -# Launch Rofi -MENU="$(rofi -no-config -no-lazy-grab -sep "|" -dmenu -i -p '' \ --theme $SDIR/rofi/styles.rasi \ -<<< " Black| Adapta| Dark| Red| Green| Teal| Gruvbox| Nord| Solarized| Cherry|")" - case "$MENU" in - *Black) "$SDIR"/styles.sh --mode1 ;; - *Adapta) "$SDIR"/styles.sh --mode2 ;; - *Dark) "$SDIR"/styles.sh --mode3 ;; - *Red) "$SDIR"/styles.sh --mode4 ;; - *Green) "$SDIR"/styles.sh --mode5 ;; - *Teal) "$SDIR"/styles.sh --mode6 ;; - *Gruvbox) "$SDIR"/styles.sh --mode7 ;; - *Nord) "$SDIR"/styles.sh --mode8 ;; - *Solarized) "$SDIR"/styles.sh --mode9 ;; - *Cherry) "$SDIR"/styles.sh --mode10 ;; - esac |