dotfiles/scripts/rofi/launch.sh
2021-07-11 16:54:17 +03:00

12 lines
369 B
Bash
Executable File

#!/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