Slight change of font name.

This commit is contained in:
Bartek Stalewski 2021-10-18 18:02:14 +02:00
parent f0bffc38fe
commit 3a4ed15281
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"JetBrainsMOno Nerd Font Mono:style=Medium:size=12",
"JetBrainsMono Nerd Font:style=Medium:size=12",
"Noto Color Emoji:style=Regular:size=14",
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */

View File

@ -13,7 +13,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono Nerd Font Mono:style=Medium:size=10", "Material Icons:size=12" };
static const char *fonts[] = { "JetBrainsMono Nerd Font:style=Medium:size=10", "Material Icons:size=12" };
static const char normfgcolor[] = "#bbbbbb";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";

View File

@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "JetBrainsMono Nerd Font Mono:style=Medium:pixelsize=14";
static char *font = "JetBrainsMono Nerd Font:style=Medium:pixelsize=14";
static char *font2[] = { "Noto Color Emoji:pixelsize=12" };
static int borderpx = 5;