summaryrefslogtreecommitdiffstats
path: root/.config/herbstluftwm/autostart
diff options
context:
space:
mode:
Diffstat (limited to '.config/herbstluftwm/autostart')
-rwxr-xr-x.config/herbstluftwm/autostart10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/herbstluftwm/autostart b/.config/herbstluftwm/autostart
index eb12d12..709fe59 100755
--- a/.config/herbstluftwm/autostart
+++ b/.config/herbstluftwm/autostart
@@ -32,12 +32,20 @@
(string-append "Shift-" name)
(string-append "move " name)))
+(define (dmenu-command fn nb nf)
+ (string-append "dmenu_run -fn '" fn "' -nb '" nb "' -nf '" nf "'"))
+
;; keybindings
(keybind modkey "Mod1-q" "quit")
(keybind modkey "Mod1-r" "reload")
(keybind modkey "Shift-c" "close")
(keybind modkey "Return" "spawn urxvt")
-(keybind modkey "r" "spawn dmenu_run")
+(keybind modkey "r"
+ (string-append
+ "spawn "
+ (dmenu-command
+ "-misc-dejavu sans mono-medium-r-*-*-10-*-*-*-*-*-*-*"
+ "#252a2b" "#eeeeec")))
;; tags
(hc "rename default q")