Add userspace reboot option to menuquit

This commit is contained in:
ItsDrike 2023-10-10 20:32:55 +02:00
parent 6e31a94da3
commit 9a79a5453b
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
action="$(printf 'Quit WM\nLock session\nLogout\nLock TTYs\nPoweroff\nReboot\nNothing' | menuprompt -c --app wofi -p "Select Action" -- -O default)" 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 case "$action" in
"Quit WM") "Quit WM")
@ -21,6 +21,9 @@ case "$action" in
"Reboot") "Reboot")
systemctl reboot systemctl reboot
;; ;;
"Userspace Reboot")
systemctl soft-reboot
;;
"Nothing") ;& "Nothing") ;&
*) *)
exit 1 exit 1