From 423984a2415f84f4bf2df5485c59b5885a76725b Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 23 Aug 2024 22:30:02 -0400 Subject: [PATCH] dwm: Add bar height patch Seems to make the bar spacing a bit more pleasant to look at. --- specializations/dwm.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/specializations/dwm.nix b/specializations/dwm.nix index f4ef21c2..2bb842a5 100644 --- a/specializations/dwm.nix +++ b/specializations/dwm.nix @@ -168,6 +168,7 @@ in static const unsigned int borderpx = 0; static const unsigned int snap = 32; + static const int user_bh = 16; static const int showbar = 1; static const int topbar = 1; static const char *fonts[] = { @@ -273,6 +274,11 @@ in url = "https://dwm.suckless.org/patches/reorganizetags/dwm-reorganizetags-6.2.diff"; hash = "sha256-Fj+cfw+5d7i6UrakMbebhZsfmu8ZfooduQA08STovK4="; }) + + (pkgs.fetchpatch { + url = "https://dwm.suckless.org/patches/bar_height/dwm-bar-height-spacing-6.3.diff"; + hash = "sha256-usMIMmloUG4NrX10AVbgr8kFs9ZG6Krn1NxXTVcLq70="; + }) ]; }; };