summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorCase Duckworth2020-12-10 19:57:06 -0600
committerCase Duckworth2020-12-10 19:57:06 -0600
commit60a283942c69f7c50a79959f17274cd0c2e48499 (patch)
tree390942b2d73b294a86fc7c592c993eab9e16f6de /README.md
parentChanges from work (diff)
downloademacs-60a283942c69f7c50a79959f17274cd0c2e48499.tar.gz
emacs-60a283942c69f7c50a79959f17274cd0c2e48499.zip
Add emacsdc
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md index 1347bdc..4b21784 100644 --- a/README.md +++ b/README.md
@@ -1012,6 +1012,19 @@ from [unpackaged.el](https://github.com/alphapapa/unpackaged.el#ensure-blank-lin
1012 (add-hook 'kill-emacs-hook #'acdw/refresh-emacs-no-load) 1012 (add-hook 'kill-emacs-hook #'acdw/refresh-emacs-no-load)
1013 1013
1014 1014
1015## Ancillary scripts
1016
1017
1018### emacsdc
1019
1020A wrapper script around emacs-client that starts the daemon if it hasn’t been yet.
1021
1022 if ! emacsclient -nc "$@" 2>/dev/null; then
1023 emacs --daemon
1024 emacsclient -nc "$@"
1025 fi
1026
1027
1015## License 1028## License
1016 1029
1017Copyright © 2020 Case Duckworth <acdw@acdw.net> 1030Copyright © 2020 Case Duckworth <acdw@acdw.net>