diff options
author | epoch <epoch@hacking.allowed.org> | 2020-04-06 19:03:31 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2020-04-06 19:03:31 -0500 |
commit | d176a3aede6539ab276e29307e7e88fd22bd7ddc (patch) | |
tree | 597740ff33cf1f1fcb34a6c6c7e90ba1fcd7712e /copy_start_nevermind.sh | |
parent | 61c209d35a47d126d0871bf03223eb1e8f7d8806 (diff) | |
download | uritools-d176a3aede6539ab276e29307e7e88fd22bd7ddc.tar.gz uritools-d176a3aede6539ab276e29307e7e88fd22bd7ddc.zip |
dunno why I never included this script in this repo
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 |