diff options
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/transadd | 13 | ||||
| -rwxr-xr-x | .local/bin/upfile | 2 | ||||
| -rw-r--r-- | .local/share/vocab/words.txt | 3 |
3 files changed, 13 insertions, 5 deletions
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." diff --git a/.local/share/vocab/words.txt b/.local/share/vocab/words.txt index 269c685..1f4fbc5 100644 --- a/.local/share/vocab/words.txt +++ b/.local/share/vocab/words.txt @@ -66,3 +66,6 @@ sceptical -> not easily convinced; having doubts or reservations psyched -> excited and full of anticipation faucet -> a tap, "nal" in hindi duress -> threats, violence, constrains, or other actions used to coerce someone into doing something against theri will or better judgement +detriment -> the state of being harmed or damaged +alleviate -> make (suffering, deficiency, or a problem) less severe +sentient -> able to perceive or feel things |
