Save emacs session before shutdown with a script

This commit is contained in:
2021-04-30 00:00:50 +02:00
parent 883903f636
commit be88ce64fa
2 changed files with 18 additions and 2 deletions

View File

@@ -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"