dwm: trying a patch

sh-initrd-on-root
Zynh Ludwig 2024-10-09 16:33:14 -07:00
parent 82c03e3055
commit 4ed51b089e
1 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ lib, config, pkgs, inputs, ... }:
let
inherit (pkgs) fetchpatch;
inherit (lib) getExe;
cfg = config.snowhawk.dwm;
@ -26,6 +27,12 @@ in
enable = true;
package = pkgs.dwm.overrideAttrs (oldAttrs: {
patches = [
# Systray patch
(fetchpatch {
url = "https://dwm.suckless.org/patches/systray/dwm-systray-20230922-9f88553.diff";
hash = "sha256-KeNXvXTxgAFomP/68hljeVLHd9JvXy8WHQ+66nQZCKE=";
})
../home/dwm/config.def.h-6.5.diff
];
});