Files
dotfiles/bin/powermenu
Archie Fox 06b8ee8caf Init commit
2025-06-08 06:59:19 +03:00

11 lines
405 B
Bash
Executable File

#!/bin/bash
choice=$(echo -e "Lock\nLogout\nReboot\nShutdown\nSleep\nHibernate" | rofi -theme archer -font "Iosevka Nerd Font Medium 18" -dmenu -p "Power menu")
case "$choice" in
"Lock") betterlockscreen -l ;;
"Logout") pkill -u $USER ;;
"Reboot") doas systemctl reboot ;;
"Shutdown") doas systemctl poweroff ;;
"Sleep") doas systemctl suspend ;;
"Hibernate") doas systemctl hibernate ;;
esac