66/* Status line max width: */
77#define CONFIG_STATUS_W 50
88
9+ /* Pattern to match terminals: */
10+ #error "verify TERM_PATT :)"
11+ #define TERM_PATT "lew@T430:"
12+
913/* appearance */
1014static const unsigned int borderpx = 1 ; /* border pixel of windows */
1115static const unsigned int snap = 32 ; /* snap pixel */
@@ -25,7 +29,8 @@ static const char *colors[][3] = {
2529};
2630
2731/* tagging */
28- static const char * tags [] = { "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" };
32+ static const char * tags [] = { "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" , "tmp" };
33+ #define TMPTAG 9
2934
3035static const Rule rules [] = {
3136 /* xprop(1):
@@ -99,6 +104,7 @@ static Key keys[] = {
99104 { MODKEY , XK_period , focusmon , {.i = +1 } },
100105 { MODKEY |ShiftMask , XK_comma , tagmon , {.i = -1 } },
101106 { MODKEY |ShiftMask , XK_period , tagmon , {.i = +1 } },
107+ { MODKEY |ShiftMask , XK_t , gather , {.s = TERM_PATT }},
102108 TAGKEYS ( XK_1 , 0 )
103109 TAGKEYS ( XK_2 , 1 )
104110 TAGKEYS ( XK_3 , 2 )
0 commit comments