voidrice/.local/bin/transadd

10 lines
429 B
Text
Raw Normal View History

2019-08-18 12:28:11 -04:00
#!/usr/bin/env sh
2018-10-04 13:45:00 -04:00
# Mimeapp script for adding torrent to transmission-daemon, but will also start the daemon first if not running.
2018-10-04 13:45:00 -04:00
# transmission-daemon sometimes fails to take remote requests in its first moments.
2018-10-04 13:45:00 -04:00
2019-11-24 08:10:31 -05:00
pgrep -x transmission-da || (transmission-daemon && notify-send "Starting transmission daemon..." && sleep 3 && pkill -RTMIN+7 "${STATUSBAR:?}")
2018-10-04 13:45:00 -04:00
transmission-remote -a "$@" && notify-send "🔽 Torrent added."