9d56d3e272
Also add simple description comment to all script.
9 lines
227 B
Bash
Executable File
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."
|