diff options
author | epoch <epoch@hacking.allowed.org> | 2020-08-06 15:38:31 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2020-08-06 15:38:31 -0500 |
commit | 7b3921a87a316c85324445cc76ca7b34eb07da3f (patch) | |
tree | fca04167b3a2b62ff63d56ba4740454e2909a5ba /choose | |
parent | 475e2a86c9f8cc636f1387dbbeb2416ed1a444d3 (diff) | |
download | uritools-7b3921a87a316c85324445cc76ca7b34eb07da3f.tar.gz uritools-7b3921a87a316c85324445cc76ca7b34eb07da3f.zip |
copy_start_nevermind now only shows the user a shortened version, has extra "verbose" option to see whole thing, and a "forget" option which might be flakey if you select an empty URI
Diffstat (limited to 'choose')
-rwxr-xr-x | choose | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,5 +3,7 @@ ### 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" +#message=$1 +#shift +#sed 's|,|\\,|g;s|:|\\:|g' | tr '\n' ',' | rev | cut -b2- | rev | tr '\n' '\0' | xargs -0 xmessage -nearmouse "$@" "$message" -print -buttons +dmenu -l 10 -p "$1" |