diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2015-11-03 00:17:53 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2015-11-03 00:17:53 -0300 |
commit | f852bfd75bec7e53febeb3e753fce5752b423d97 (patch) | |
tree | 8a6d843950435eb4ef756938863ed326b2faeec3 /herbstluftwm/bin/dmenu_wrapper | |
parent | 50787494e9dcbed9fa3caa96cba46a0c40d321d8 (diff) | |
download | dotfiles-f852bfd75bec7e53febeb3e753fce5752b423d97.tar.gz |
Update herbstluftwm
Diffstat (limited to 'herbstluftwm/bin/dmenu_wrapper')
-rwxr-xr-x | herbstluftwm/bin/dmenu_wrapper | 11 |
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')" + |