diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-12 19:27:30 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-12 19:27:30 +0200 |
| commit | 58f7632fd838ba3a8d8590baa10128c2db44c9ad (patch) | |
| tree | fac3169da62fc0987a2564b0b73c6b4fb6320b52 /home/private_Library | |
| parent | 5533e947bbba56e1214b148b481dc214f401f09e (diff) | |
mac updates
Diffstat (limited to 'home/private_Library')
| -rw-r--r-- | home/private_Library/LaunchAgents/homebrew.mxcl.mpd.plist.tmpl | 30 | ||||
| -rw-r--r-- | home/private_Library/LaunchAgents/homebrew.mxcl.syncthing.plist | 30 |
2 files changed, 60 insertions, 0 deletions
diff --git a/home/private_Library/LaunchAgents/homebrew.mxcl.mpd.plist.tmpl b/home/private_Library/LaunchAgents/homebrew.mxcl.mpd.plist.tmpl new file mode 100644 index 0000000..dc82a82 --- /dev/null +++ b/home/private_Library/LaunchAgents/homebrew.mxcl.mpd.plist.tmpl @@ -0,0 +1,30 @@ +<?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>KeepAlive</key> + <true/> + <key>Label</key> + <string>homebrew.mxcl.mpd</string> + <key>LimitLoadToSessionType</key> + <array> + <string>Aqua</string> + <string>Background</string> + <string>LoginWindow</string> + <string>StandardIO</string> + <string>System</string> + </array> + <key>ProcessType</key> + <string>Interactive</string> + <key>ProgramArguments</key> + <array> + <string>/opt/homebrew/opt/mpd/bin/mpd</string> + <string>--no-daemon</string> + <string>{{ env "XDG_CONFIG_HOME" }}/mpd/mpd.conf</string> + </array> + <key>RunAtLoad</key> + <true/> + <key>WorkingDirectory</key> + <string>/opt/homebrew</string> +</dict> +</plist> diff --git a/home/private_Library/LaunchAgents/homebrew.mxcl.syncthing.plist b/home/private_Library/LaunchAgents/homebrew.mxcl.syncthing.plist new file mode 100644 index 0000000..2932303 --- /dev/null +++ b/home/private_Library/LaunchAgents/homebrew.mxcl.syncthing.plist @@ -0,0 +1,30 @@ +<?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>KeepAlive</key> + <true/> + <key>Label</key> + <string>homebrew.mxcl.syncthing</string> + <key>LimitLoadToSessionType</key> + <array> + <string>Aqua</string> + <string>Background</string> + <string>LoginWindow</string> + <string>StandardIO</string> + <string>System</string> + </array> + <key>ProgramArguments</key> + <array> + <string>/opt/homebrew/opt/syncthing/bin/syncthing</string> + <string>--no-browser</string> + <string>--no-restart</string> + </array> + <key>RunAtLoad</key> + <true/> + <key>StandardErrorPath</key> + <string>/opt/homebrew/var/log/syncthing.log</string> + <key>StandardOutPath</key> + <string>/opt/homebrew/var/log/syncthing.log</string> +</dict> +</plist> |