mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
12 lines
369 B
Bash
12 lines
369 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
menu="$1"
|
||
|
|
||
|
if [ "$menu" = "music" ]; then
|
||
|
rofi -modi 'Music:~/scripts/rofi/music.sh' -show Music -theme music-launcher
|
||
|
elif [ "$menu" = "appmenu" ]; then
|
||
|
rofi -show drun -theme clean
|
||
|
elif [ "$menu" = "powermenu" ]; then
|
||
|
rofi -modi 'Powermenu:~/scripts/rofi/powermenu.sh' -show Powermenu -theme powermenu -location 3 -xoffset -24 -yoffset 70
|
||
|
fi
|