Switch from JetBrains to Roboto.

This commit is contained in:
Bartek Stalewski 2022-02-24 15:19:38 +01:00
parent 7836d8b0be
commit f11e6c927f
4 changed files with 5 additions and 5 deletions

View file

@ -106,7 +106,7 @@
### Text ###
font = JetBrainsMono Nerd Font Mono 10
#font = JetBrainsMono Nerd Font Mono 10
# The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height.

View file

@ -6,7 +6,7 @@ static int centered = 0; /* -c option; centers dmenu on scree
static int min_width = 500; /* minimum width when centered */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"JetBrainsMono Nerd Font Mono:style=Medium:size=12",
"RobotoMono 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[] = { "RobotoMono Nerd Font:style=Medium:size=10", "Material Icons:size=12" };
static const char normfgcolor[] = "#bbbbbb";
static const char col_fg[] = "#161616";
static const char col_bg[] = "#c7c7c7";
@ -38,7 +38,7 @@ static Sp scratchpads[] = {
};
/* tagging */
static const char *tags[] = {"\ue9ef", "\ue894", "\ue0c9", "\ue0e1", "\ue3fe", "\ue3ff", "7", "\ue8af", "\ue943", "\uea67"};
static const char *tags[] = {"\ue9ef", "\ue80b", "\ue0c9", "\ue0e1", "\ue3fe", "\ue3ff", "7", "\ue8af", "\ue943", "\ue894"};
static const Rule rules[] = {
/* xprop(1):

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 = "RobotoMono Nerd Font:style=Medium:pixelsize=14";
static char *font2[] = { "Noto Color Emoji:pixelsize=12" };
static int borderpx = 5;