Update some configs

This commit is contained in:
Tobias Reisinger 2024-03-08 18:31:33 +01:00
parent ffceab7873
commit f0c444ce6c
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 12 additions and 10 deletions

View file

@ -17,10 +17,10 @@ if [ -z "$action" ]; then
fi
case "$action" in
backup-shutdown) _menu_shutdown_backup && systemctl poweroff -i ;;
shutdown) systemctl poweroff -i ;;
reboot) systemctl reboot ;;
soft-reboot) systemctl soft-reboot ;;
logout) systemctl --user exit ;;
autostart) autostart-manage run ;;
*) ;; esac
"backup-shutdown") _menu_shutdown_backup && systemctl poweroff -i ;;
"shutdown") systemctl poweroff -i ;;
"reboot") systemctl reboot ;;
"soft-reboot") systemctl soft-reboot ;;
"logout") systemctl --user exit ;;
"autostart") autostart-manage run ;;
"*") ;; esac