2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2018-10-04 17:45:00 +00:00
|
|
|
|
2019-02-22 21:39:58 +00:00
|
|
|
# Mimeapp script for adding torrent to transmission-daemon, but will also start the daemon first if not running.
|
2018-10-04 17:45:00 +00:00
|
|
|
|
2020-04-11 14:03:33 +00:00
|
|
|
# transmission-daemon sometimes fails to take remote requests in its first moments, hence the sleep.
|
2018-10-04 17:45:00 +00:00
|
|
|
|
2020-05-13 15:47:29 +00:00
|
|
|
pidof transmission-daemon >/dev/null || (transmission-daemon && notify-send "Starting transmission daemon..." && sleep 3 && pkill -RTMIN+7 "${STATUSBAR:-dwmblocks}")
|
2018-10-04 17:45:00 +00:00
|
|
|
|
2019-02-22 21:39:58 +00:00
|
|
|
transmission-remote -a "$@" && notify-send "🔽 Torrent added."
|