/* Header for text, do not edit it. */ /* Text for tags */ static char *tags[] = { text_tag1_empty, text_tag2_empty, /* Tag 2 text (empty) */ text_tag3_empty, /* Tag 3 text (empty) */ text_tag4_empty, /* Tag 4 text (empty) */ text_tag5_empty, /* Tag 5 text (empty) */ text_tag6_empty, /* Tag 6 text (empty) */ text_tag7_empty, /* Tag 7 text (empty) */ text_tag8_empty, /* Tag 8 text (empty) */ text_tag9_empty, /* Tag 9 text (empty) */ }; /* Text for tags with windows open */ static char *usedtags[] = { text_tag1_used, /* Tag 1 text (used) */ text_tag2_used, /* Tag 2 text (used) */ text_tag3_used, /* Tag 3 text (used) */ text_tag4_used, /* Tag 4 text (used) */ text_tag5_used, /* Tag 5 text (used) */ text_tag6_used, /* Tag 6 text (used) */ text_tag7_used, /* Tag 7 text (used) */ text_tag8_used, /* Tag 8 text (used) */ text_tag9_used, /* Tag 9 text (used) */ }; /* Text for layouts */ static Layout layouts[] = { #if LAYOUT_TILE { text_layout1, tile, }, #endif /* floating layout (if no layout is available */ { text_layout2, NULL, }, #if LAYOUT_MONOCLE { text_layout3, monocle, }, #endif #if LAYOUT_GRID { text_layout4, grid }, #endif #if LAYOUT_DECK { text_layout5, deck }, #endif #if LAYOUT_CM { text_layout6, centeredmaster }, #endif #if LAYOUT_CFM { text_layout7, centeredfloatingmaster }, #endif #if LAYOUT_SPIRAL { text_layout8, spiral }, #endif #if LAYOUT_DWINDLE { text_layout9, dwindle }, #endif #if LAYOUT_BSTACK { text_layout10, bstack }, #endif #if LAYOUT_BSTACKH { text_layout11, bstackhoriz }, #endif #if LAYOUT_HGRID { text_layout12, horizgrid }, #endif #if LAYOUT_DGRID { text_layout13, dynamicgrid }, #endif #if LAYOUT_CUSTOM { text_layout14, custom }, #endif { NULL, NULL }, };