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
|
|
|
|
2019-02-22 21:39:58 +00:00
|
|
|
# transmission-daemon sometimes fails to take remote requests in its first moments.
|
2018-10-04 17:45:00 +00:00
|
|
|
|
2020-04-11 02:53:45 +00:00
|
|
|
pgrep -x transmission-da || (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."
|