This file contains hidden or 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>org.archiveteam.warrior</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/bin/VBoxHeadless</string> | |
| <string>-s</string> |
This file contains hidden or 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
| #!/bin/sh | |
| # toggle http://code.google.com/p/macosx-nosleep-extension/ | |
| /usr/local/bin/NoSleepCtrl -s 1,1 |
This file contains hidden or 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
| #!/bin/sh | |
| # toggle http://code.google.com/p/macosx-nosleep-extension/ off | |
| /usr/local/bin/NoSleepCtrl -s 0,0 |
This file contains hidden or 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
| ### Keybase proof | |
| I hereby claim: | |
| * I am grantstavely on github. | |
| * I am grantstavely (https://keybase.io/grantstavely) on keybase. | |
| * I have a public key whose fingerprint is B6B2 B7DB 961B 290C 5F33 1725 A067 55D6 88AF 5060 | |
| To claim this, I am signing this object: |
This file contains hidden or 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
| javascript:(function(){%20%20%20%20alert(document.location.protocol%20+"//"+%20document.location.hostname%20+%20document.location.pathname)})(); |
This file contains hidden or 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
| on adding folder items to thisFolder after receiving added_items | |
| repeat with addedFile in added_items | |
| tell application "Finder" | |
| if (the name of the addedFile ends with "torrent") then | |
| set transmissionRemote to "/usr/local/bin/transmission-remote https://TRANSMISSION_HOST/transmission -n 'USERNAME:PASSWORD' --add '" & POSIX path of addedFile & "' | sed 's/\"//g' | grep -oE '[^ ]+$'" | |
| set fileName to name of (info for addedFile) | |
| display notification fileName with title "Torrent Janitor - Queueing Torrent" | |
| set transmissionResponse to do shell script transmissionRemote | |
| display notification fileName with title "Torrent Janitor - " & transmissionResponse | |
| tell application "Finder" |
OlderNewer