Save emacs session before shutdown with a script
This commit is contained in:
parent
883903f636
commit
be88ce64fa
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
usage() {
|
||||
echo "Usage: power-manager <operation>"
|
||||
echo "operation: poweroff|reboot"
|
||||
}
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
operation=$1
|
||||
|
||||
emacsclient --eval '(doom/save-session "~/.emacs.d/.local/etc/workspaces/autosave")'
|
||||
systemctl "$operation"
|
|
@ -286,8 +286,8 @@ bindsym $mod+Shift+p mode "$Pause-break"
|
|||
set $Pause-break (p) poweroff, (r) reboot
|
||||
|
||||
mode "$Pause-break" {
|
||||
bindsym s exec --no-startup-id systemctl poweroff , mode "default"
|
||||
bindsym r exec --no-startup-id systemctl reboot, mode "default"
|
||||
bindsym s exec --no-startup-id ~/.local/share/scripts/power-manager "poweroff", mode "default"
|
||||
bindsym r exec --no-startup-id ~/.local/share/scripts/power-manager "reboot", mode "default"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
|
|
Loading…
Reference in New Issue