mirror of
https://github.com/pgrondek/config.git
synced 2024-11-29 15:03:05 +00:00
16 lines
248 B
Plaintext
16 lines
248 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
address=192.168.50.101
|
||
|
|
||
|
set -x
|
||
|
|
||
|
transmission-remote $address -a "$1" &> /dev/null
|
||
|
|
||
|
status=$?
|
||
|
|
||
|
if [ $status -eq 0 ] ; then
|
||
|
notify-send Transmission "Added torrent"
|
||
|
else
|
||
|
notify-send Transmission "Error adding torrent"
|
||
|
fi
|