dotfiles/scripts/rofi/launch.sh

12 lines
369 B
Bash
Raw Normal View History

2021-07-11 15:51:11 +02:00
#!/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