@@ -18,7 +18,8 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning
1818static const int showsystray = 1 ; /* 0 means no systray */
1919static const int showbar = 1 ; /* 0 means no bar */
2020static const int topbar = 1 ; /* 0 means bottom bar */
21- static const int extrabar = 1 ; /* 0 means no extra bar */
21+ static const int vertpad = 10 ; /* vertical padding of bar */
22+ static const int sidepad = 10 ; /* horizontal padding of bar */
2223static const int viewontag = 1 ; /* 0 means don't view on tag switch */
2324static const int useinstabar = 1 ; /* 0 means don't use instabar script */
2425static const int user_bh = 28 ; /* 0 means that instawm will calculate bar height, >= 1 means instawm will user_bh as bar height */
@@ -139,8 +140,17 @@ static const Layout layouts[] = {
139140};
140141
141142static const Taglayout taglayouts [] = {
142- /* tag layout */
143- { 1 , {.v = & layouts [6 ]} },
143+ /* tag layout */
144+ { 1 , {.v = & layouts [6 ]} },
145+ { 2 , {.v = & layouts [0 ]} },
146+ { 3 , {.v = & layouts [0 ]} },
147+ { 4 , {.v = & layouts [0 ]} },
148+ { 5 , {.v = & layouts [0 ]} },
149+ { 6 , {.v = & layouts [0 ]} },
150+ { 7 , {.v = & layouts [0 ]} },
151+ { 8 , {.v = & layouts [0 ]} },
152+ { 9 , {.v = & layouts [0 ]} },
153+ { 10 , {.v = & layouts [0 ]} },
144154};
145155
146156/* key definitions */
@@ -237,7 +247,6 @@ static Key keys[] = {
237247 { MODKEY , -1 , XK_Return , spawn , {.v = terminalcmd } },
238248 { ControlMask , -1 , XK_Return , togglescratch , {.v = scratchpadcmd } },
239249 { MODKEY , -1 , XK_b , togglebar , {0 } },
240- { MODKEY , -1 , XK_b , toggleextrabar , {0 } },
241250 { MODKEY , -1 , XK_j , focusstack , {.i = +1 } },
242251 { MODKEY , -1 , XK_k , focusstack , {.i = -1 } },
243252 { MODKEY , -1 , XK_i , incnmaster , {.i = +1 } },
0 commit comments