2025-06-08 12:06:34 +02:00
|
|
|
#!/usr/bin/env bash
|
2025-06-08 13:25:33 +02:00
|
|
|
|
|
|
|
MENU="$(
|
|
|
|
rofi -sep "\n" -dmenu -i \
|
|
|
|
-p 'Theme auswählen' \
|
|
|
|
-width 12 \
|
|
|
|
-hide-scrollbar \
|
|
|
|
-line-padding 4 \
|
|
|
|
-padding 20 \
|
|
|
|
-lines 4 \
|
|
|
|
-font "Berkeley Mono Bold 14" \
|
2025-06-08 13:28:13 +02:00
|
|
|
<<<$(cat ~/.config/Theme-Selector/MyThemes.cfg)
|
2025-06-08 13:25:33 +02:00
|
|
|
)"
|
|
|
|
|
2025-06-08 12:06:34 +02:00
|
|
|
Theme $MENU
|