Update transadd (#633)
* Update transadd When transmission daemon is closed and the user wants to add a torrent, it needs to try to add the torrent two times, the first time for opening the daemon, and the second time for adding the torrent Removing the ampersand fix this, enabling one click for both starting the daemon and adding the torrent * fix typo
This commit is contained in:
parent
8f05c7d79f
commit
74421a25b5
1 changed files with 1 additions and 1 deletions
|
@ -4,6 +4,6 @@
|
||||||
|
|
||||||
# transmission-daemon sometimes fails to take remote requests in its first moments, hence the sleep.
|
# 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 && pkill -RTMIN+7 "${STATUSBAR:-dwmblocks}") &
|
pidof transmission-daemon >/dev/null || (transmission-daemon && notify-send "Starting transmission daemon..." && sleep 3 && pkill -RTMIN+7 "${STATUSBAR:-dwmblocks}")
|
||||||
|
|
||||||
transmission-remote -a "$@" && notify-send "🔽 Torrent added."
|
transmission-remote -a "$@" && notify-send "🔽 Torrent added."
|
||||||
|
|
Loading…
Reference in a new issue