diff options
author | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:15:00 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:15:00 -0400 |
commit | 16acdb1803317f2f87c46ee0e0cac1fcbfea6c33 (patch) | |
tree | 8c008aca2231d2321148022331eb32433977d596 | |
parent | aa0a43277b7b26fdd5f80e4e0a28142d6a93068c (diff) |
Use JetBrains Mono as default font
-rwxr-xr-x | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 2305952..af546bb 100755 --- a/config.def.h +++ b/config.def.h @@ -8,8 +8,8 @@ static const unsigned int borderpx = 1; /* 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[] = { "Terminus:size=12" }; -static const char dmenufont[] = "Terminus:size=12"; +static const char *fonts[] = { "JetBrains Mono:size=10" }; +static const char dmenufont[] = "JetBrains Mono:size=10"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; @@ -67,7 +67,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; static const char *termcmd[] = { "st", NULL }; -static const char *webcmd[] = { "qutebrowser", NULL }; +static const char *webcmd[] = { "firefox", NULL }; static const char *lockcmd[] = { "slock", NULL }; static const char *brupcmd[] = { "doas", "light", "-A", "10", NULL }; static const char *brdowncmd[] = { "doas", "light", "-U", "10", NULL }; |