Fixed fonts to be same across the different apps

This commit is contained in:
j4nk 2023-04-09 10:43:53 -04:00
parent b1354bfdef
commit 7c451d3c75
4 changed files with 14 additions and 8 deletions

View File

@ -4,9 +4,10 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
/*static const char *fonts[] = {
"monospace:size=10"
};
};*/
static const char *fonts[] = { "Liberation Mono:pixelsize=12:antialias=true:autohint=true" };
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */

View File

@ -4,9 +4,10 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
/*static const char *fonts[] = {
"monospace:size=10"
};
};*/
static const char *fonts[] = { "Liberation Mono:pixelsize=12:antialias=true:autohint=true" };
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */

View File

@ -5,8 +5,10 @@ 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[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
//static const char *fonts[] = { "monospace:size=10" };
static const char *fonts[] = { "Liberation Mono:pixelsize=12:antialias=true:autohint=true" };
//static const char dmenufont[] = "monospace:size=10";
static const char dmenufont[] = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";

View File

@ -5,8 +5,10 @@ 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[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
//static const char *fonts[] = { "monospace:size=10" };
static const char *fonts[] = { "Liberation Mono:pixelsize=12:antialias=true:autohint=true" };
//static const char dmenufont[] = "monospace:size=10";
static const char dmenufont[] = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";