summaryrefslogtreecommitdiff
path: root/choose
diff options
context:
space:
mode:
authorepoch <epoch@hack.thebackupbox.net>2021-10-30 00:27:43 +0000
committerepoch <epoch@hack.thebackupbox.net>2021-10-30 00:27:43 +0000
commit3c5cd5e68278f82cc071623419e1a205c6fee38b (patch)
tree72d8dc4493e399d7ea6cc094826e527ef9e4c564 /choose
parent62817acef7618bd5d6e77ffabb39aabe33f5a37c (diff)
parentc38649558142ee7a02c176f373120f417633b022 (diff)
downloaduritools-3c5cd5e68278f82cc071623419e1a205c6fee38b.tar.gz
uritools-3c5cd5e68278f82cc071623419e1a205c6fee38b.zip
Merge branch 'master' of ssh://git.thebackupbox.net/uritools
Diffstat (limited to 'choose')
-rwxr-xr-xchoose6
1 files changed, 4 insertions, 2 deletions
diff --git a/choose b/choose
index be4602a..1ec7dd7 100755
--- a/choose
+++ b/choose
@@ -7,7 +7,9 @@
#shift
#sed 's|,|\\,|g;s|:|\\:|g' | tr '\n' ',' | rev | cut -b2- | rev | tr '\n' '\0' | xargs -0 xmessage -nearmouse "$@" "$message" -print -buttons
if [ $DISPLAY ];then
- dmenu -l 10 -p "$1"
+#usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m monitor]
+# [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]
+ dmenu -l 10 -p "$1" -nb '#000000' -nf '#00aa00' -sb '#006600' -sf '#00ff00'
else
- printf "%s" "$1" ; ledit head -n1
+ printf "%s" "$1"
fi