Increase DWM font size as a test

This commit is contained in:
2024-06-02 22:46:57 +01:00
parent 702531e6ca
commit b5b400e549
2 changed files with 4 additions and 3 deletions

View File

@@ -453,6 +453,7 @@ if [[ ${main_menu[@]} =~ 1 ]]; then # DWM
compile() { compile() {
cd suckless/$1 cd suckless/$1
rmm -rf config.h
sudo make clean install sudo make clean install
cd ../.. cd ../..
} }

View File

@@ -1,12 +1,12 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* appearance */ /* 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 unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" }; static const char *fonts[] = { "JetBrainsMono NF:size=20" };
static const char dmenufont[] = "monospace:size=10"; static const char dmenufont[] = "JetBrainsMono NF:size=20";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";