Files
linux-dotfiles/hypr/scripts/powermenu.sh
2024-04-06 19:31:51 -05:00

18 lines
265 B
Bash
Executable File

#!/usr/bin/env bash
op=$( echo -e " Shutdown\n Reboot\n Suspend\n Lock" | wofi --dmenu | awk '{print tolower($2)}' )
case $op in
shutdown)
shutdown now
;;
reboot)
;&
suspend)
systemctl $op
;;
lock)
hyprlock
;;
esac