diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 13:24:54 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 13:24:54 +0300 |
commit | 434c6ce5292bc886000cc475118d26c25a60a3e6 (patch) | |
tree | c13d723a74768ba1b7e63ad10290ea792c0a1dd1 | |
parent | 2a61f6f5db098850d0ab1d796a7851b46358e2e4 (diff) |
Added anti-aliasing and autohinting to the fonts used.
Changes to be committed:
modified: config.h
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,8 +5,8 @@ static const unsigned int gappx = 4; /* tiling spacing */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Inconsolata:pixelsize=17" }; -static const char dmenufont[] = "Inconsolata:pixelsize=17"; +static const char *fonts[] = { "Inconsolata:pixelsize=17:antialias=true:autohint=true" }; +static const char dmenufont[] = "Inconsolata:pixelsize=17:antialias=true:autohint=true"; static const char col_gray1[] = "#0a001f"; // darkk purple static const char col_gray2[] = "#828ff9"; // light purple @@ -24,8 +24,8 @@ static const char *alttags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* xprop(1): - * WM_CLASS(STRING) = instance, class - * WM_NAME(STRING) = title + * WM_CLASS(STRING) = instance, class + * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating monitor */ @@ -109,7 +109,7 @@ static Key keys[] = { /* button definitions */ /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ static Button buttons[] = { - /* click event mask button function argument */ + /* click event mask button function argument */ { ClkLtSymbol, 0, Button1, setlayout, {0} }, { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, { ClkWinTitle, 0, Button2, zoom, {0} }, |