15 lines
284 B
Bash
Executable file
15 lines
284 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
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" \
|
|
<<<$(cat ~/.config/Theme-Selector/MyThemes.cfg)
|
|
)"
|
|
|
|
Theme $MENU
|