voidrice/.local/bin/transadd

10 lines
430 B
Text
Raw Normal View History

#!/bin/sh
2018-10-04 17:45:00 +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
# transmission-daemon sometimes fails to take remote requests in its first moments.
2018-10-04 17:45:00 +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
transmission-remote -a "$@" && notify-send "🔽 Torrent added."