Add host-backup script

This commit is contained in:
Tobias Reisinger 2023-12-14 17:53:28 +01:00
parent 80a7334f59
commit 3bb298526b
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 48 additions and 1 deletions

View file

@ -1,8 +1,24 @@
#!/bin/sh
action=$(printf "shutdown\nreboot\nlogout\nautostart" | $DMENU)
actions="backup-shutwdown
shutdown
reboot
logout
autostart"
action=$(echo "$actions" | $DMENU)
_menu_shutdown_backup() {
alacritty -e "host-backup"
}
if [ -z "$action" ]; then
exit 1
fi
notify-send "$(user-cleaner)"
case "$action" in
backup-shutwdown) _menu_shutdown_backup && systemctl poweroff -i ;;
shutdown) systemctl poweroff -i ;;
reboot) systemctl reboot ;;
logout) systemctl --user exit ;;