blob: 652150c14673327b71e00e1ce3c0bbd6aa9f9e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# Starting transmission-daemon if not already running
# transmission-daemon sometimes fails to take remote requests in its first moments, hence the sleep.
pidof transmission-daemon >/dev/null || (transmission-daemon && notify-send "Starting transmission daemon...")
sleep 3
# adding the Torrent
if [ -z "$*" ]; then
magnetlink="$(wl-paste)"
transmission-remote -a "$magnetlink" && notify-send "🔽 Torrent added."
else
transmission-remote -a "$@" && notify-send "🔽 Torrent added."
fi
|