diff options
author | Malfurious <m@lfurio.us> | 2020-06-22 01:05:21 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-06-03 21:48:54 -0400 |
commit | 008f8a61770c966a2a644ee8fa9a9dd15c84799d (patch) | |
tree | 2eed150a8146959eed7820a3ed5ec811027a7de3 /config.def.h | |
parent | fc63e62e14aa5ffe340e13e339c597686a82adcd (diff) | |
download | dwm-008f8a61770c966a2a644ee8fa9a9dd15c84799d.tar.gz dwm-008f8a61770c966a2a644ee8fa9a9dd15c84799d.zip |
patch: autobar
dwm will automatically hide the monitor's statusbar when only 1 tag is
being utilized (viewing an empty tag counts as 'utilization').
The hotkey for controlling visibility manually is removed, and all
monitors default to statusbar hidden at startup (since no clients would
be active).
Diffstat (limited to '')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 9c6dc83..1b5b710 100644 --- a/config.def.h +++ b/config.def.h @@ -3,7 +3,6 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ -static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; @@ -78,7 +77,6 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_z, spawn, {.v = slockucmd } }, { MODKEY|ShiftMask, XK_backslash, spawn, {.v = browsercmd } }, { MODKEY|ControlMask|ShiftMask, XK_backslash, spawn, {.v = browserpcmd } }, - { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, |