mirror of
https://github.com/SinTan1729/random.git
synced 2025-04-04 10:28:04 -05:00
new: Move movies to Temp
This commit is contained in:
parent
4e8ad8caf1
commit
c0cce90f40
1 changed files with 14 additions and 6 deletions
20
qbt-send-msg.sh
Normal file → Executable file
20
qbt-send-msg.sh
Normal file → Executable file
|
@ -2,22 +2,30 @@
|
|||
|
||||
# A very simple script to send message using ntfy.sh whenever a torrent is added/completed
|
||||
# in qBittorrent. Just call the script from qBittorrent's external script option
|
||||
# using <script> "%N" "%Z" (add/fin)
|
||||
# It also adds trackers using https://github.com/Jorman/Scripts/blob/master/AddqBittorrentTrackers.sh
|
||||
# using <script> "%N" "%Z" fin "%L" "%F"
|
||||
|
||||
name="$1"
|
||||
size="$2"
|
||||
status="$3"
|
||||
category="$4"
|
||||
path="$5"
|
||||
|
||||
if [ "$3" == "add" ]; then
|
||||
if [ "$status" == "add" ]; then
|
||||
message="Added: $name"
|
||||
elif [ "$3" == "fin" ]; then
|
||||
size="$(echo $2 | numfmt --to=iec --format %.2f)B"
|
||||
elif [ "$status" == "fin" ]; then
|
||||
size="$(echo $size | numfmt --to=iec --format %.2f)B"
|
||||
message="Finished: [$size] $name"
|
||||
if [ "$category" == "movie" ]; then
|
||||
cp -lR "$path" /downloads/Temp/movie/
|
||||
fi
|
||||
else
|
||||
exit
|
||||
fi
|
||||
|
||||
curl -H "Icon: https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/New_qBittorrent_Logo.svg/240px-New_qBittorrent_Logo.svg.png" \
|
||||
-u :tk_8tdkqzsjaauqnngy9bc33wcuh3xq6 \
|
||||
-H "Title: qBittorrent" \
|
||||
-H "Priority: low" \
|
||||
-d "$message" \
|
||||
https://ntfy.sh/topic-name
|
||||
https://ntfy.sintan1729.uk/qbittorrent
|
||||
|
||||
|
|
Loading…
Reference in a new issue