From 8e7d1bbd0ccea1b8f3127f1b2365d93c2f7db0e1 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Sun, 2 Jun 2024 22:46:57 +0100 Subject: [PATCH] Increase DWM font size as a test --- install.sh | 1 + suckless/dwm/config.def.h | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 818201f5..6c222551 100755 --- a/install.sh +++ b/install.sh @@ -453,6 +453,7 @@ if [[ ${main_menu[@]} =~ 1 ]]; then # DWM compile() { cd suckless/$1 + rmm -rf config.h sudo make clean install cd ../.. } diff --git a/suckless/dwm/config.def.h b/suckless/dwm/config.def.h index 9efa7744..fb113dc4 100644 --- a/suckless/dwm/config.def.h +++ b/suckless/dwm/config.def.h @@ -1,12 +1,12 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 2; /* 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[] = { "JetBrainsMono NF:size=20" }; +static const char dmenufont[] = "JetBrainsMono NF:size=20"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb";