diff options
| author | krolyxon <krolyxon@tutanota.com> | 2022-06-01 22:55:52 +0530 |
|---|---|---|
| committer | krolyxon <krolyxon@tutanota.com> | 2022-06-01 22:55:52 +0530 |
| commit | 723220028038a3c6e155259e28d07e867e2d45c9 (patch) | |
| tree | f07e13aaf23e820c6da71ec02466e5831502b0e2 /.local/bin/transadd | |
first commit
Diffstat (limited to '.local/bin/transadd')
| -rwxr-xr-x | .local/bin/transadd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.local/bin/transadd b/.local/bin/transadd new file mode 100755 index 0000000..ffa31fb --- /dev/null +++ b/.local/bin/transadd @@ -0,0 +1,9 @@ +#!/bin/sh + +# Mimeapp script for adding torrent to transmission-daemon, but will also start the daemon first if not 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 +transmission-remote -a "$@" && notify-send "🔽 Torrent added." |
