summaryrefslogtreecommitdiff
path: root/barmenu
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-09 21:22:48 -0600
committerzachir <zachir@librem.one>2023-02-09 21:22:48 -0600
commit22e8f8c134dac828f997519dbf0bdba0d3a4abdc (patch)
tree3c7456a272072317d608f8a8ac71c7471fa13ec5 /barmenu
parente503a94262ca97a10fed8f0dea31020d1b3747dd (diff)
update barmenu to add color args plus use /bin/sh
Diffstat (limited to 'barmenu')
-rwxr-xr-xbarmenu6
1 files changed, 3 insertions, 3 deletions
diff --git a/barmenu b/barmenu
index a43a079..b110f18 100755
--- a/barmenu
+++ b/barmenu
@@ -1,7 +1,7 @@
-#!/sbin/sh
+#!/bin/sh
if [ -z "$WAYLAND_DISPLAY" -a -n "$DISPLAY" ]; then
- dmenu -i -F $@
+ dmenu -i -nb '#000000' -nf '#198844' -sb '#39c1ed' -sf '#198844' "$@"
else
- bemenu $(echo $@ | sed 's/-h/-H/')
+ dmenu-wl -nb '#000000' -nf '#198844' -sb '#39c1ed' -sf '#198844' -i $@
fi