aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-07-25 22:55:35 +0100
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-07-25 22:55:35 +0100
commit5db9f68f1d2ecd48f6a5a0af707a45e63c352faa (patch)
treefd54efae598088f92e0917918f501e3beccad9f7
parente4cb2da8e9af50de5f4efd7cc4ad2e31056198b0 (diff)
updates
-rw-r--r--config.h5
-rw-r--r--config.mk2
2 files changed, 5 insertions, 2 deletions
diff --git a/config.h b/config.h
index 8474bae..34d5c8e 100644
--- a/config.h
+++ b/config.h
@@ -5,8 +5,11 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
+
static char *font = "Terminess Nerd Font Mono:pixelsize=14:antialias=true:autohint=true";
+// static char *font = "-misc-fixed-medium-r-semicondensed-*-13-100-100-100-c-60-iso8859-*";
+
/* disable bold, italic and roman fonts globally */
int disablebold = 1;
int disableitalic = 1;
@@ -141,7 +144,7 @@ static const char *colorname[] = {
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
- "black", /* default background colour */
+ "#191970", /* default background colour */
};
diff --git a/config.mk b/config.mk
index 66f0875..ab4600e 100644
--- a/config.mk
+++ b/config.mk
@@ -24,7 +24,7 @@ LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender \
`$(PKG_CONFIG) --libs freetype2`
# flags
-STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
+STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -O3
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) -O3
STLDFLAGS = $(LIBS) $(LDFLAGS)