aboutsummaryrefslogtreecommitdiffstats
path: root/choose
diff options
context:
space:
mode:
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