speedwm-personal/text.h

47 lines
2.1 KiB
C

/* 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[] = {
{ text_layout1, tile, }, /* tile layout */
{ text_layout2, NULL, }, /* floating layout */
{ text_layout3, monocle, }, /* monocle layout */
{ text_layout4, grid }, /* grid layout */
{ text_layout5, deck }, /* deck layout */
{ text_layout6, centeredmaster }, /* centered master layout */
{ text_layout7, centeredfloatingmaster }, /* centered floating layout */
{ text_layout8, spiral }, /* spiral layout */
{ text_layout9, dwindle }, /* dwindle layout */
{ text_layout10, bstack }, /* bottom stack layout */
{ text_layout11, bstackhoriz }, /* horiz bottom stack layout */
{ text_layout12, horizgrid }, /* horiz grid layout */
{ text_layout13, dynamicgrid }, /* dynamic grid layout */
#if LAYOUT_CUSTOM
{ text_layout14, custom }, /* custom layout */
#endif
{ NULL, NULL },
};