ADD startup scripts

This commit is contained in:
Nathan Dwarshuis 2024-01-07 09:25:42 -05:00
parent bc9842709c
commit a1010506d8
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@
!init.el
!straight-boot.el
!runtime_pkgs
!bin
# track versions of installed packages
!straight

5
bin/emacs-start Executable file
View File

@ -0,0 +1,5 @@
#! /bin/bash
# start the emacs daemon
emacs --fg-daemon > /dev/null 2>&1

5
bin/emacs-stop Executable file
View File

@ -0,0 +1,5 @@
#! /bin/bash
# stop the emacs daemon
emacsclient --eval "(kill-emacs)"