wzykubek d426ba3e91
Upload totally new dotfiles for new configuration
Old fiels still available on other branches
2024-10-27 13:26:04 +01:00

15 lines
338 B
Bash
Executable File

#!/usr/bin/env sh
# Power menu.
WHAT="$(printf "lock\nsuspend\nlogout\nshutdown\nreboot" | rofi -dmenu -l 5 -p 'power')"
if [ -z "$WHAT" ]; then exit; fi
case "$WHAT" in
"lock") hyprlock;;
"suspend") hyprlock & systemctl suspend;;
"logout") hyprctl dispatch exit;;
"shutdown") systemctl poweroff;;
"reboot") systemctl reboot
esac