Skip to content

Instantly share code, notes, and snippets.

@mrbuk
Last active February 9, 2025 15:30
Show Gist options
  • Save mrbuk/4244901383265997f4af5b28cf627520 to your computer and use it in GitHub Desktop.
Save mrbuk/4244901383265997f4af5b28cf627520 to your computer and use it in GitHub Desktop.
tmux launchd definition

Install using launchctl load tmux.plist

Feel free to change the Label to something else or remove the domain. I have set it to my own domain to avoid clashes.

<?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>de.mrbuk.tmux</string>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/var/tmp/tmux_err.log</string>
<key>StandardOutPath</key>
<string>/var/tmp/tmux_out.log</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/tmux</string>
<string>-D</string>
<string>-v</string>
</array>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment