Fix powermenu and move it from dmenu to rofi

This commit is contained in:
samedamci 2020-05-10 10:28:19 +02:00
parent cdd755df2a
commit 568693fa8b
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

View File

@ -1,11 +1,11 @@
#!/usr/bin/env sh
WHAT="$(printf "Shutdown\nSuspend\nLock\nReboot" | dmenu -i -p 'What do you want?' -h 24)"
WHAT="$(printf "Shutdown\nSuspend\nLock\nReboot" | rofi -dmenu -i -p 'What do you want?' -l 4)"
if [ -z "$WHAT" ]; then exit; fi
case "$WHAT" in
Shutdown) systemctl poweroff;;
Suspend) sh ~/.scripts/lockscreen; systemctl suspend;;
Lock) sh ~/.scripts/lockscreen;;
Suspend) lockscreen; systemctl suspend;;
Lock) lockscreen;;
Reboot) systemctl reboot
esac