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
| cd /tmp | |
| wget http://dev2day.de/plex-latest | |
| sudo dpkg -i plex* | |
| sudo service plexmediaserver restart |
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
| sudo service transmission-daemon start |
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
| sudo service transmission-daemon-stop | |
| sudo nano /etc/transmission-daemon/settings.json |
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
| { | |
| "alt-speed-down": 50, | |
| "alt-speed-enabled": false, | |
| "alt-speed-time-begin": 540, | |
| "alt-speed-time-day": 127, | |
| "alt-speed-time-enabled": false, | |
| "alt-speed-time-end": 1020, | |
| "alt-speed-up": 50, | |
| "bind-address-ipv4": "0.0.0.0", | |
| "bind-address-ipv6": "::", |
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
| sudo apt-get update | |
| sudo apt-get install transmission-daemon | |
| sudo usermod -a -G pi debian-transmission |
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
| forever start index.js |
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
| cd ~/ | |
| git clone [email protected]:sergiovilar/dropbox-downloader.git | |
| mv ~/.dropbox_settings ~/dropbox-downloader/settings.json |
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
| cd ~/ | |
| git clone [email protected]:Phlaphead/dropbox-sync-js.git | |
| cd dropbox-sync-js | |
| npm install | |
| node sync.js |
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
| wget http://node-arm.herokuapp.com/node_latest_armhf.deb | |
| sudo dpkg -i node_latest_armhf.deb | |
| npm install -g forever |
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
| property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer. | |
| on adding folder items to this_folder after receiving aadded_items | |
| tell application "Finder" | |
| set home_path to path to home folder as string | |
| set work_folder to folder (home_path & "Dropbox:Torrents") | |
| set target_folder to folder (home_path & "Downloads") | |
| move entire contents of work_folder to target_folder | |
| end tell |