Wiktor Zykubek 65d6817092 Add 'shelp' script
Also add simple description comment to all script.
2020-05-15 20:56:33 +02:00

9 lines
227 B
Bash
Executable File

#!/bin/sh
# Add torrent to downloading queue.
pidof transmission-daemon >/dev/null || \
(transmission-daemon && notify-send "Starting transmission daemon...")
transmission-remote -a "$@" && notify-send " Torrent added."