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
# System Updates | |
duk01.ps5.update.playstation.net | |
fuk01.ps5.update.playstation.net | |
dus01.ps5.update.playstation.net | |
fus01.ps5.update.playstation.net | |
feu01.ps5.update.playstation.net | |
dau01.ps5.update.playstation.net | |
fau01.ps5.update.playstation.net | |
djp01.ps5.update.playstation.net | |
fjp01.ps5.update.playstation.net |
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
/^(?!.*&usetoken=1).*(torrents.php\?action=download).*$/ |
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
# The following line can be added to .rtorrent.rc to set up watch directories | |
# | |
# Replace: | |
# [WATCH_DIR] with the directory to watch for torrent files | |
# [DOWNLOAD_DIR] with the directory to save the files into | |
# [LABEL] with a label to apply to torrents added via this watch dir | |
# Important: Thus far i have not worked out how to use spaces in label names | |
# Do not include spaces for .torrent files will not be imported into rtorrent if you do | |
# | |
# Remove: |
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
$ screen -ls | |
# Grab screen id for rtorrent process | |
$ screen -r [rtorrent id] | |
# From within rtorrent screen | |
ctrl x # start command input | |
import=~/.rtorrent.rc # import config | |
ctrl a+d # detach |
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
# Download inotifytools | |
# - Version, url's, directory names could change, use your brain. | |
$ wget https://github.com/inotify-tools/inotify-tools/releases/download/3.20.2.2/inotify-tools-3.20.2.2.tar.gz | |
$ tar -xvf inotify-tools-3.20.2.2.tar.gz | |
$ cd inotify-tools-3.20.2.2 | |
# Install inotifytools | |
# - Configure it to use directories under non root user home dir | |
# - Imporant, absolute paths required for configure commands | |
$ ./configure --prefix=/home/user/.local --libdir=/home/user/.local/lib |
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
#!/usr/bin/env bash | |
DELUGE_HOST=127.0.0.1 | |
DELUGE_PORT=12345 | |
DOWNLOAD_DIR=~/downloads | |
WATCH_DIR=~/watch | |
LOG_FILE=~/var/logs/deluge-console-inotify.log | |
if [ ! -d $(dirname "${LOG_FILE}") ]; then | |
mkdir -p $(dirname "${LOG_FILE}") |