enable antialiasing for other fonts, indentation change

This commit is contained in:
speediegq 2022-10-18 16:57:28 +02:00
parent 58d4aceb88
commit 9068e4da5d

View file

@ -133,8 +133,8 @@ static int autoresize = 1; /* Allow resizing clients aut
/* Font options */
static char font[] = { "NotoSans-Regular:size=8:antialiasing=true" }; /* What font should we use? */
static char font2[] = { "fontawesome:size=8" }; /* Second font */
static char font3[] = { "Noto Color Emoji:size=8" }; /* Third font */
static char font2[] = { "fontawesome:size=8:antialiasing=true" }; /* Second font */
static char font3[] = { "Noto Color Emoji:size=8:antialiasing=true" }; /* Third font */
static char *fonts[] = { font, font2, font3 }; /* All fonts */
static char defaultstatus[] = ""; /* What to print when a status bar is not running */
@ -321,17 +321,17 @@ static int colorlayout = 1; /* Color the layout indicator
* You can also set OPAQUE and TRANSPARENT which are the same as 0 and 255 respectively.
* To completely disable alpha, disable it in toggle.h.
*/
#define baropacity 160 /* Opacity for the overall bar */
#define layoutopacity 160 /* Opacity for the layout indicator */
#define tagnormopacity OPAQUE /* Opacity for other tags */
#define tagselopacity 160 /* Opacity for the selected tag */
#define normtitleopacity 160 /* Opacity for all other windows in the speedwm bar */
#define seltitleopacity 160 /* Opacity for the focused window in the speedwm bar */
#define normborderopacity OPAQUE /* Opacity for the all window borders except selected */
#define selborderopacity OPAQUE /* Opacity for the selected window border */
#define hiddenopacity 0 /* Opacity for hidden/minimized windows */
#define statusopacity 160 /* Opacity for speedwm status bar */
#define systrayopacity 160 /* Opacity for the speedwm built in systray */
#define baropacity 160 /* Opacity for the overall bar */
#define layoutopacity 160 /* Opacity for the layout indicator */
#define tagnormopacity OPAQUE /* Opacity for other tags */
#define tagselopacity 160 /* Opacity for the selected tag */
#define normtitleopacity 160 /* Opacity for all other windows in the speedwm bar */
#define seltitleopacity 160 /* Opacity for the focused window in the speedwm bar */
#define normborderopacity OPAQUE /* Opacity for the all window borders except selected */
#define selborderopacity OPAQUE /* Opacity for the selected window border */
#define hiddenopacity 0 /* Opacity for hidden/minimized windows */
#define statusopacity 160 /* Opacity for speedwm status bar */
#define systrayopacity 160 /* Opacity for the speedwm built in systray */
/* Tag text options
*
@ -342,7 +342,7 @@ static int colorlayout = 1; /* Color the layout indicator
* Do note that usedtags are not going to be used if tag labels are enabled.
*
*/
static char *tags[] = { "1", /* Tag 1 text (empty) */
static char *tags[] = { "1", /* Tag 1 text (empty) */
"2", /* Tag 2 text (empty) */
"3", /* Tag 3 text (empty) */
"4", /* Tag 4 text (empty) */
@ -354,7 +354,7 @@ static char *tags[] = { "1", /* Tag 1 text (empty) *
};
/* Text for tags with windows open */
static char *usedtags[] = { "[1]", /* Tag 1 text (occupied) */
static char *usedtags[] = { "[1]", /* Tag 1 text (occupied) */
"[2]", /* Tag 2 text (occupied) */
"[3]", /* Tag 3 text (occupied) */
"[4]", /* Tag 4 text (occupied) */
@ -369,7 +369,7 @@ static char *usedtags[] = { "[1]", /* Tag 1 text (occupied
*
* Sticky
*/
static XPoint stickyicon[] = { {0,0}, /* Represents the icon as an array of vertices */
static XPoint stickyicon[] = { {0,0}, /* Represents the icon as an array of vertices */
{4,0},
{4,8},
{2,6},
@ -377,7 +377,7 @@ static XPoint stickyicon[] = { {0,0}, /* Represents the icon a
{0,0},
};
static XPoint stickyiconbb = {4,8}; /* Defines the bottom right corner of the polygon's bounding box (speeds up scaling) */
static XPoint stickyiconbb = {4,8}; /* Defines the bottom right corner of the polygon's bounding box (speeds up scaling) */
/* You have reached the end of the configuration file.
* For keybinds, see 'keybinds.h'