From fd20f3a9da6caabffb94cc5c130c4f66c1306113 Mon Sep 17 00:00:00 2001 From: krolyxon Date: Thu, 16 Jun 2022 00:53:34 +0530 Subject: transadd script improvement --- .local/bin/transadd | 13 +++++++++---- .local/bin/upfile | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) (limited to '.local/bin') diff --git a/.local/bin/transadd b/.local/bin/transadd index ffa31fb..226135b 100755 --- a/.local/bin/transadd +++ b/.local/bin/transadd @@ -1,9 +1,14 @@ #!/bin/sh -# Mimeapp script for adding torrent to transmission-daemon, but will also start the daemon first if not running. - +# 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 -transmission-remote -a "$@" && notify-send "🔽 Torrent added." + +# 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 diff --git a/.local/bin/upfile b/.local/bin/upfile index dca4373..4196dc5 100755 --- a/.local/bin/upfile +++ b/.local/bin/upfile @@ -9,4 +9,4 @@ fi [ -z "$file" ] && exit curl -F"file=@$file" 0x0.st | xclip -sel c -notify-send "The url has been copied to your clipboard. $file" +notify-send "The url has been copied to your clipboard." -- cgit v1.2.3