transadd script improvement
This commit is contained in:
parent
1de53674c4
commit
fd20f3a9da
|
|
@ -1,26 +0,0 @@
|
||||||
[config]
|
|
||||||
bm_open_method=0
|
|
||||||
|
|
||||||
[volume]
|
|
||||||
mount_on_startup=1
|
|
||||||
mount_removable=1
|
|
||||||
autorun=1
|
|
||||||
|
|
||||||
[ui]
|
|
||||||
always_show_tabs=0
|
|
||||||
max_tab_chars=32
|
|
||||||
win_width=1049
|
|
||||||
win_height=1053
|
|
||||||
splitter_pos=147
|
|
||||||
media_in_new_tab=0
|
|
||||||
desktop_folder_new_win=0
|
|
||||||
change_tab_on_drop=1
|
|
||||||
close_on_unmount=1
|
|
||||||
focus_previous=0
|
|
||||||
side_pane_mode=places
|
|
||||||
view_mode=icon
|
|
||||||
show_hidden=1
|
|
||||||
sort=name;ascending;
|
|
||||||
toolbar=newtab;navigation;home;
|
|
||||||
show_statusbar=1
|
|
||||||
pathbar_mode_buttons=0
|
|
||||||
|
|
@ -8,7 +8,7 @@ super + grave
|
||||||
|
|
||||||
# swap cap if stops working
|
# swap cap if stops working
|
||||||
super + c
|
super + c
|
||||||
setxkbmap -option caps:swapescape
|
setxkbmap -option caps:swapescape && xset r rate 300 50
|
||||||
|
|
||||||
# Screenshot tool
|
# Screenshot tool
|
||||||
Print
|
Print
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/sh
|
#!/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.
|
# 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...")
|
pidof transmission-daemon >/dev/null || (transmission-daemon && notify-send "Starting transmission daemon...")
|
||||||
sleep 3
|
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
|
||||||
|
|
|
||||||
|
|
@ -9,4 +9,4 @@ fi
|
||||||
[ -z "$file" ] && exit
|
[ -z "$file" ] && exit
|
||||||
|
|
||||||
curl -F"file=@$file" 0x0.st | xclip -sel c
|
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."
|
||||||
|
|
|
||||||
|
|
@ -66,3 +66,6 @@ sceptical -> not easily convinced; having doubts or reservations
|
||||||
psyched -> excited and full of anticipation
|
psyched -> excited and full of anticipation
|
||||||
faucet -> a tap, "nal" in hindi
|
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
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue