dotfiles-x11/.local/bin/transadd

15 lines
517 B
Bash
Executable File

#!/bin/sh
# Starting transmission-daemon if not already 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
# adding the Torrent
if [ -z "$*" ]; then
magnetlink="$(xclip -sel c -o)"
transmission-remote -a "$magnetlink" && notify-send "🔽 Torrent added."
else
transmission-remote -a "$@" && notify-send "🔽 Torrent added."
fi