aboutsummaryrefslogtreecommitdiff
path: root/config/polybar/cuts/scripts/style-switch.sh
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-12 15:19:57 +0200
committerWilliam Hergès <william@herges.fr>2025-08-12 15:19:57 +0200
commit4a21ae6fcdfcd0051a2e6fee641cd344c01dac83 (patch)
treea3741ca7f848d0f5213915d82f78fd0039a874f9 /config/polybar/cuts/scripts/style-switch.sh
parentfed5ed81fbf64942dab81e7afd1eac5651290631 (diff)
Reset everything
Diffstat (limited to 'config/polybar/cuts/scripts/style-switch.sh')
-rwxr-xr-xconfig/polybar/cuts/scripts/style-switch.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/config/polybar/cuts/scripts/style-switch.sh b/config/polybar/cuts/scripts/style-switch.sh
deleted file mode 100755
index e693e53..0000000
--- a/config/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