remove launch agent garbage. i hate launchctl

This commit is contained in:
Jacob Janzen 2024-08-12 22:25:22 -05:00
parent d905e7a47b
commit 32f908ccbc
2 changed files with 4 additions and 25 deletions

View file

@ -2,6 +2,8 @@
#+begin_src sh :tangle ~/Applications/Emacs.app/Contents/MacOS/Emacs :mkdirp yes :tangle-mode o755
#!/bin/sh
/opt/homebrew/bin/emacsclient -c &> /dev/null &
disown
if ! ps -e | grep -q '[E]macs --bg-daemon'; then
/opt/homebrew/bin/emacs --daemon
fi
/opt/homebrew/bin/emacsclient -c &> /dev/null
#+end_src

View file

@ -1,23 +0,0 @@
#+title: Emacs Daemon =launchd= Entry
Create a =launchd= entry for Emacs daemon to run at login.
#+begin_src xml :tangle ~/Library/LaunchAgents/gnu.emacs.daemon.plist :mkdirp yes
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>gnu.emacs.daemon</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/emacs</string>
<string>--daemon</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>Gnu Emacs Daemon</string>
</dict>
</plist>
#+end_src