diff options
author | epoch <epoch@hack.thebackupbox.net> | 2020-04-16 00:07:10 +0000 |
---|---|---|
committer | epoch <epoch@hack.thebackupbox.net> | 2020-04-16 00:07:10 +0000 |
commit | 3dcba88f53fcf9d01ce71ce838bda7697de4def9 (patch) | |
tree | c118e3c081723ba24e179676204f2457585b20e5 /copy_start_nevermind.sh | |
parent | 245e54a0bdb845e336cc5d62b93ec8a1d4330695 (diff) | |
parent | 56924803638d20eb380d0bd7acde4a2a6349f38e (diff) | |
download | uritools-3dcba88f53fcf9d01ce71ce838bda7697de4def9.tar.gz uritools-3dcba88f53fcf9d01ce71ce838bda7697de4def9.zip |
Merge branch 'master' of /var/git/uritools
Diffstat (limited to 'copy_start_nevermind.sh')
-rwxr-xr-x | copy_start_nevermind.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/copy_start_nevermind.sh b/copy_start_nevermind.sh new file mode 100755 index 0000000..ec8f102 --- /dev/null +++ b/copy_start_nevermind.sh @@ -0,0 +1,15 @@ +#!/bin/bash +scheme="$(uricut -s <<< "$1")" +selection="$(printf "%s\ncopy\nstart\nnevermind\n" "$(printf "%s\n" "$1" | uricut | grep -v '^whole')" \ + | choose "$(printf "uri: '%s'\nwill be ran with: %s\n" "$1" "$(grep "^${scheme}:" ~/.config/uristart.conf | tr -s '\t' | cut -f2- )" )")" +echo "$selection" +if [ "$selection" = "copy" ];then + printf "%s" "$1" | xclip -i + exit 0 +fi +if [ "$selection" = "start" ];then + scheme="$(printf "%s\n" "$1" | uricut -s)" + exec uristart "$1" "$(xdotool getwindowfocus getwindowname)" + exit 0 +fi +exec printf "%s" "$selection" | cut '-d ' -f2- | xclip -i |