Use Firacode Nerd Fonts

This commit is contained in:
2026-01-13 22:05:41 +01:00
parent 2c260c333d
commit 4537c87ba0
+9 -6
View File
@@ -1,12 +1,15 @@
/* See LICENSE file for copyright and license details. */
#define FONT "FiraCodeNerdFont:size=11"
/* appearance */
static const unsigned int borderpx = 5; /* border pixel of windows */
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
static const char *fonts[] = { FONT };
static const char dmenufont[] = FONT;
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@@ -27,8 +30,8 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
{ "Terminal", NULL, NULL, 0, 1, -1 },
{ "Reader", NULL, NULL, 1 << 8, 0, -1 },
};
/* layout(s) */
@@ -36,7 +39,7 @@ static const float mfact = 0.55; /* factor of master area size [0.05..0.95]
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
static const int refreshrate = 60; /* refresh rate (per second) for client move/resize */
static const int refreshrate = 60; /* refresh rate (per second) for client move/resize */
static const Layout layouts[] = {
/* symbol arrange function */