From c52b782827702f1956b3eec4a0d762bb96bc34f7 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Sun, 2 Jun 2024 22:50:12 +0100 Subject: [PATCH] Fix typo --- install.sh | 2 +- suckless/dwm/config.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 6c222551..c3c43267 100755 --- a/install.sh +++ b/install.sh @@ -453,7 +453,7 @@ if [[ ${main_menu[@]} =~ 1 ]]; then # DWM compile() { cd suckless/$1 - rmm -rf config.h + sudo rm -rf config.h sudo make clean install cd ../.. } diff --git a/suckless/dwm/config.h b/suckless/dwm/config.h index 9efa7744..fb113dc4 100644 --- a/suckless/dwm/config.h +++ b/suckless/dwm/config.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";