repo: uritools
action: commit
revision: 
path_from: 
revision_from: d176a3aede6539ab276e29307e7e88fd22bd7ddc:
path_to: 
revision_to: 
git.thebackupbox.net
uritools
git clone git://git.thebackupbox.net/uritools
commit d176a3aede6539ab276e29307e7e88fd22bd7ddc
Author: epoch 
Date:   Mon Apr 6 19:03:31 2020 -0500

    dunno why I never included this script in this repo

diff --git a/copy_start_nevermind.sh b/copy_start_nevermind.sh
new file mode 100755
index 0000000000000000000000000000000000000000..ec8f1020f51b4c45a1c91753b7642738229b0c70
--- /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

-----END OF PAGE-----