From d176a3aede6539ab276e29307e7e88fd22bd7ddc Mon Sep 17 00:00:00 2001 From: epoch Date: Mon, 6 Apr 2020 19:03:31 -0500 Subject: dunno why I never included this script in this repo --- copy_start_nevermind.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 copy_start_nevermind.sh 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 -- cgit v1.2.3 From 8111431c7b8932f756ffe2723f903d45027e3933 Mon Sep 17 00:00:00 2001 From: epoch Date: Mon, 6 Apr 2020 19:10:52 -0500 Subject: forgot to add copy_start_nevermind to the install target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1f480c4..2ba7816 100644 --- a/Makefile +++ b/Makefile @@ -33,3 +33,4 @@ install: all install search $(PREFIX)/bin/search install getsrv $(PREFIX)/bin/getsrv install urititle $(PREFIX)/bin/urititle + install -t $(PREFIX)/bin copy_start_nevermind.sh -- cgit v1.2.3 From 56924803638d20eb380d0bd7acde4a2a6349f38e Mon Sep 17 00:00:00 2001 From: epoch Date: Mon, 6 Apr 2020 19:13:13 -0500 Subject: added the "choose" script as copy_start_nevermind uses it --- Makefile | 1 + choose | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100755 choose diff --git a/Makefile b/Makefile index 2ba7816..f8079ce 100644 --- a/Makefile +++ b/Makefile @@ -34,3 +34,4 @@ install: all install getsrv $(PREFIX)/bin/getsrv install urititle $(PREFIX)/bin/urititle install -t $(PREFIX)/bin copy_start_nevermind.sh + install -t $(PREFIX)/bin choose diff --git a/choose b/choose new file mode 100755 index 0000000..1b989fd --- /dev/null +++ b/choose @@ -0,0 +1,7 @@ +#!/bin/sh +### this script is meant to take a \n delimited list of things +### then give the user a way of selecting on of them. +### it should output the selection on a line by itself. +### and use $1 as the message to give to the user. +sed 's|,|\\,|g;s|:|\\:|g' | tr '\n' ',' | rev | cut -b2- | rev | tr '\n' '\0' | xargs -0 xmessage -nearmouse "$1" -print -buttons +#dmenu -p "$1" -- cgit v1.2.3