Last active
December 29, 2015 15:29
-
-
Save localhots/c224b49f4f70b937e2d1 to your computer and use it in GitHub Desktop.
OSX Launch agent that shuts Transmission.app down on weekdays at 12 noon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/Library/LaunchAgents | |
wget https://gist.githubusercontent.com/localhots/c224b49f4f70b937e2d1/raw/2b60ee2593310fa89aea4396dc7e5c2ada37b608/ru.aviasales.notorrents.plist | |
launchctl load xxx.localhots.notorrents.plist | |
cd - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>xxx.localhots.notorrents</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/killall</string> | |
<string>Transmission</string> | |
</array> | |
<key>StartCalendarInterval</key> | |
<array> | |
<dict> | |
<key>Weekday</key> | |
<integer>1</integer> | |
<key>Hour</key> | |
<integer>12</integer> | |
<key>Minute</key> | |
<integer>0</integer> | |
</dict> | |
<dict> | |
<key>Weekday</key> | |
<integer>2</integer> | |
<key>Hour</key> | |
<integer>12</integer> | |
<key>Minute</key> | |
<integer>0</integer> | |
</dict> | |
<dict> | |
<key>Weekday</key> | |
<integer>3</integer> | |
<key>Hour</key> | |
<integer>12</integer> | |
<key>Minute</key> | |
<integer>0</integer> | |
</dict> | |
<dict> | |
<key>Weekday</key> | |
<integer>4</integer> | |
<key>Hour</key> | |
<integer>12</integer> | |
<key>Minute</key> | |
<integer>0</integer> | |
</dict> | |
<dict> | |
<key>Weekday</key> | |
<integer>5</integer> | |
<key>Hour</key> | |
<integer>12</integer> | |
<key>Minute</key> | |
<integer>0</integer> | |
</dict> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment