Migrate alacritty config from yaml to toml
Remove cursor hiding in hyprland Add soft-reboot to shutdown menu
This commit is contained in:
parent
9344f7ec3b
commit
923bd6c08d
5 changed files with 28 additions and 25 deletions
.bin
|
@ -1,8 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
actions="backup-shutwdown
|
||||
actions="backup-shutdown
|
||||
shutdown
|
||||
reboot
|
||||
soft-reboot
|
||||
logout
|
||||
autostart"
|
||||
action=$(echo "$actions" | $DMENU)
|
||||
|
@ -18,9 +19,10 @@ 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 ;;
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue