summaryrefslogtreecommitdiff
path: root/herbstluftwm/bin/dmenu_wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'herbstluftwm/bin/dmenu_wrapper')
-rwxr-xr-xherbstluftwm/bin/dmenu_wrapper11
1 files changed, 11 insertions, 0 deletions
diff --git a/herbstluftwm/bin/dmenu_wrapper b/herbstluftwm/bin/dmenu_wrapper
new file mode 100755
index 0000000..7d9dccf
--- /dev/null
+++ b/herbstluftwm/bin/dmenu_wrapper
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+# Wrapper around dmenu for some problems with the loading of the font.
+
+get_xresources() {
+ arr=( $(xrdb -q | grep $1 | head -1) )
+ echo -n "${arr[@]:1}"
+}
+
+dmenu_run -b -p $(hostname) -nb $(get_xresources background) -sb $(get_xresources color4) -sf $(get_xresources foreground) -fn "$(get_xresources face | sed 's/ /\\ /g')"
+