summaryrefslogtreecommitdiff
path: root/hosts/cez/overlays/wmenu.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/cez/overlays/wmenu.nix')
-rw-r--r--hosts/cez/overlays/wmenu.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/cez/overlays/wmenu.nix b/hosts/cez/overlays/wmenu.nix
new file mode 100644
index 0000000..cad340b
--- /dev/null
+++ b/hosts/cez/overlays/wmenu.nix
@@ -0,0 +1,12 @@
+final: prev:
+
+{
+ wmenu = prev.wmenu.overrideAttrs (finalAttrs: prevAttrs:
+ {
+ pname = prevAttrs.pname + "-sinan";
+ postPatch = ''
+ sed 's/monospace 10/monospace 13/g' -i main.c
+ '';
+ }
+ );
+}