mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
35 lines
562 B
Bash
Executable file
35 lines
562 B
Bash
Executable file
#!/bin/bash
|
|
|
|
action="$(printf 'Quit WM\nLock session\nLogout\nLock TTYs\nPoweroff\nReboot\nUserspace Reboot\nNothing' | menuprompt -c --app wofi -p "Select Action" -- -O default)"
|
|
|
|
case "$action" in
|
|
"Quit WM")
|
|
hyprctl dispatch exit ""
|
|
;;
|
|
"Lock session")
|
|
loginctl lock-session
|
|
;;
|
|
"Logout")
|
|
loginctl terminate-user "$USER"
|
|
;;
|
|
"Lock TTYs")
|
|
physlock
|
|
;;
|
|
"Poweroff")
|
|
systemctl poweroff
|
|
;;
|
|
"Reboot")
|
|
systemctl reboot
|
|
;;
|
|
"Userspace Reboot")
|
|
systemctl soft-reboot
|
|
;;
|
|
"Hibernate")
|
|
systemtcl hibernate
|
|
;;
|
|
"Nothing") ;&
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|