No bar padding on monocle mode #187
Replies: 1 comment
-
For something like this I one could have two separate functions to enable or disable bar padding (and perhaps one to toggle if that is desirable). That way users could control this via keyboard shortcuts, something along these lines: { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_t, enablebarpadding, {0} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_f, enablebarpadding, {0} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_m, disablebarpadding, {0} }, Perhaps cumbersome to work with if you have many layouts and it would not work out of the box if you use something like cyclelayouts to set the arrangement or right-clicking on the layout symbol on the bar. The complication with this idea is that, although it seems obvious, how do you define what the "monocle" layout is? Sure you have the I guess you would end up with something in the |
Beta Was this translation helpful? Give feedback.
-
Hi,
if BAR_PADDING patch is enable, would be cool to remove bar padding when switching to monocle layout and restore it when
switching back to tile layout.
Beta Was this translation helpful? Give feedback.
All reactions