switch out for glyphs

This commit is contained in:
speedie 2022-12-15 21:31:31 +01:00
parent ac35797f94
commit 47e657a52e

View file

@ -60,7 +60,7 @@ static int automove = 1; /* Allow clients to automatic
static int autoresize = 1; /* Allow resizing clients automatically when they request it. */
/* Font options */
static char font[] = "Noto Sans Regular 9"; /* Font to draw the bar with */
static char font[] = "Noto Sans Regular 8"; /* Font to draw the bar with */
/* Status options */
static char defaultstatus[] = ""; /* What to print when a status bar is not running */
@ -243,43 +243,43 @@ static int tagplshape = 0; /* Shape of the tag powerline
*
* Unused/empty tags
*/
static char text_tag1_empty[] = "1"; /* Text for tag 1 when empty */
static char text_tag2_empty[] = "2"; /* Text for tag 2 when empty */
static char text_tag3_empty[] = "3"; /* Text for tag 3 when empty */
static char text_tag4_empty[] = "4"; /* Text for tag 4 when empty */
static char text_tag5_empty[] = "5"; /* Text for tag 5 when empty */
static char text_tag6_empty[] = "6"; /* Text for tag 6 when empty */
static char text_tag7_empty[] = "7"; /* Text for tag 7 when empty */
static char text_tag8_empty[] = "8"; /* Text for tag 8 when empty */
static char text_tag9_empty[] = "9"; /* Text for tag 9 when empty */
static char text_tag1_empty[] = ""; /* Text for tag 1 when empty */
static char text_tag2_empty[] = ""; /* Text for tag 2 when empty */
static char text_tag3_empty[] = ""; /* Text for tag 3 when empty */
static char text_tag4_empty[] = ""; /* Text for tag 4 when empty */
static char text_tag5_empty[] = ""; /* Text for tag 5 when empty */
static char text_tag6_empty[] = ""; /* Text for tag 6 when empty */
static char text_tag7_empty[] = ""; /* Text for tag 7 when empty */
static char text_tag8_empty[] = ""; /* Text for tag 8 when empty */
static char text_tag9_empty[] = ""; /* Text for tag 9 when empty */
/* Used/occupied tags */
static char text_tag1_used[] = "[1]"; /* Text for tag 1 when used */
static char text_tag2_used[] = "[2]"; /* Text for tag 2 when used */
static char text_tag3_used[] = "[3]"; /* Text for tag 3 when used */
static char text_tag4_used[] = "[4]"; /* Text for tag 4 when used */
static char text_tag5_used[] = "[5]"; /* Text for tag 5 when used */
static char text_tag6_used[] = "[6]"; /* Text for tag 6 when used */
static char text_tag7_used[] = "[7]"; /* Text for tag 7 when used */
static char text_tag8_used[] = "[8]"; /* Text for tag 8 when used */
static char text_tag9_used[] = "[9]"; /* Text for tag 9 when used */
static char text_tag1_used[] = ""; /* Text for tag 1 when used */
static char text_tag2_used[] = ""; /* Text for tag 2 when used */
static char text_tag3_used[] = ""; /* Text for tag 3 when used */
static char text_tag4_used[] = ""; /* Text for tag 4 when used */
static char text_tag5_used[] = ""; /* Text for tag 5 when used */
static char text_tag6_used[] = ""; /* Text for tag 6 when used */
static char text_tag7_used[] = ""; /* Text for tag 7 when used */
static char text_tag8_used[] = ""; /* Text for tag 8 when used */
static char text_tag9_used[] = ""; /* Text for tag 9 when used */
/* Layouts */
static char text_layout1[] = "(L1)"; /* Text for layout 1 */
static char text_layout2[] = "(L2)"; /* Text for layout 2 */
static char text_layout3[] = "(L3)"; /* Text for layout 3 */
static char text_layout4[] = "(L4)"; /* Text for layout 4 */
static char text_layout5[] = "(L5)"; /* Text for layout 5 */
static char text_layout6[] = "(L6)"; /* Text for layout 6 */
static char text_layout7[] = "(L7)"; /* Text for layout 7 */
static char text_layout8[] = "(L8)"; /* Text for layout 8 */
static char text_layout9[] = "(L9)"; /* Text for layout 9 */
static char text_layout10[] = "(L10)"; /* Text for layout 10 */
static char text_layout11[] = "(L11)"; /* Text for layout 11 */
static char text_layout12[] = "(L12)"; /* Text for layout 12 */
static char text_layout13[] = "(L13)"; /* Text for layout 13 */
static char text_layout14[] = "(L14)"; /* Text for layout 14 */
static char text_layout15[] = "(L15)"; /* Text for layout 15 */
static char text_layout1[] = "[L1]"; /* Text for layout 1 */
static char text_layout2[] = "[L2]"; /* Text for layout 2 */
static char text_layout3[] = "[L3]"; /* Text for layout 3 */
static char text_layout4[] = "[L4]"; /* Text for layout 4 */
static char text_layout5[] = "[L5]"; /* Text for layout 5 */
static char text_layout6[] = "[L6]"; /* Text for layout 6 */
static char text_layout7[] = "[L07]"; /* Text for layout 7 */
static char text_layout8[] = "[L08]"; /* Text for layout 8 */
static char text_layout9[] = "[L09]"; /* Text for layout 9 */
static char text_layout10[] = "[L10]"; /* Text for layout 10 */
static char text_layout11[] = "[L11]"; /* Text for layout 11 */
static char text_layout12[] = "[L12]"; /* Text for layout 12 */
static char text_layout13[] = "[L13]"; /* Text for layout 13 */
static char text_layout14[] = "[L14]"; /* Text for layout 14 */
static char text_layout15[] = "[L15]"; /* Text for layout 15 */
/* Alpha/opacity settings
*