Skip to content

Instantly share code, notes, and snippets.

@danzimm
Created September 1, 2014 20:41
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save danzimm/c0aed9a3b2c6897b4cc8 to your computer and use it in GitHub Desktop.
Drop something like this in ~/Library/LaunchAgents and you get dot-clipboard forevah ;D
<?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>im.danz.dot-clipboard</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/node</string>
<string>/usr/local/bin/dot-clipboard</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ProcessType</key>
<string>Background</string>
<key>StandardErrorPath</key>
<string>/Users/Dan/Library/Logs/im.danz.dot-clipboard.log</string>
<key>StandardOutPath</key>
<string>/Users/Dan/Library/Logs/im.danz.dot-clipboard.log</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin</string>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment