74 lines
965 B
Bash
Executable file
74 lines
965 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# shutdown menu i3blocks
|
|
MENU="$(rofi -sep "|" -dmenu -i -p 'Theme auswählen' -width 12 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 -font "Berkeley Mono Bold 14" <<<"\
|
|
vortex|\
|
|
space_moon_spaceship|\
|
|
catcity|\
|
|
eye|\
|
|
linux25-1|\
|
|
linux25-2|\
|
|
linux25-3|\
|
|
linux25-4|\
|
|
linux25-5|\
|
|
### 2024 ###|\
|
|
bunker-0001|\
|
|
Cat|\
|
|
Cat-0010|\
|
|
Cat-0011|\
|
|
Cat-0100|\
|
|
Cat-0101|\
|
|
Cat-0111|\
|
|
Circle|\
|
|
Cyburai|\
|
|
deskretro0001|\
|
|
Dubai|\
|
|
ghibli0001|\
|
|
homl_flow|\
|
|
homl_giraffeau|\
|
|
homl_gogh|\
|
|
homl_pop|\
|
|
Nightface|\
|
|
eva01|\
|
|
Ghibli|\
|
|
GhostInTheShell|\
|
|
lain1|\
|
|
lain2|\
|
|
Manga0001|\
|
|
MatrixHead|\
|
|
Morpheus|\
|
|
Mushrooms|\
|
|
Neon|\
|
|
NeonPixel|\
|
|
Night|\
|
|
Oceancity|\
|
|
retro0001|\
|
|
retro0010|\
|
|
Retrofun24|\
|
|
Skate|\
|
|
VW|\
|
|
Zimmer|\
|
|
wp1|\
|
|
wp2|\
|
|
wp3|\
|
|
wp4|\
|
|
wp5|\
|
|
wp6|\
|
|
wp7|\
|
|
wp8|\
|
|
wp9|\
|
|
wp10|\
|
|
wp11|\
|
|
wp12|\
|
|
wp13|\
|
|
wp14|\
|
|
wp15|\
|
|
wp16|\
|
|
wp17|\
|
|
wp18")"
|
|
Theme $MENU
|
|
#case "$MENU" in
|
|
## *Neon) echo Theme $MENU ;;
|
|
# *Logout) echo zwo;;
|
|
# *Reboot) echo $MENU ;;
|
|
# *Shutdown) echo nix
|
|
#esac
|