#!/usr/bin/env sh ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : transadd # @license : GPLv3 # @created : Saturday Feb 20, 2021 01:30:29 CET # # @description : add torrents to transmission-daemon # start the daemon 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 && pkill -RTMIN+7 "${STATUSBAR:-dwmblocks}") transmission-remote -a "$@" && notify-send " Torrent added."