From aeef7c9a171c1c532f5ad6806f9bf42292332b00 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Wed, 31 Jan 2024 15:53:53 +0100 Subject: [PATCH] minor changes --- build.sh | 4 ++-- patches.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index ff09c52..e32bd78 100755 --- a/build.sh +++ b/build.sh @@ -1,11 +1,11 @@ #!/bin/sh -cp -f config.mk patches.h dwm-flexipatch/ +cp -i config.mk patches.h dwm-flexipatch/ flexipatch-finalizer/flexipatch-finalizer.sh -r -d dwm-flexipatch -o dwm-final for patch in patches/*.diff; do patch -d dwm-final <"$patch" done -cp -f config.h dwm-final/ +cp -i config.h dwm-final/ cd dwm-final || exit 1 make clean install DESTDIR="../pkg" PREFIX="/usr" cd - || exit 1 diff --git a/patches.h b/patches.h index 818f7f2..beb0ce3 100644 --- a/patches.h +++ b/patches.h @@ -884,7 +884,7 @@ #define ON_EMPTY_KEYS_PATCH 0 /* Minor patch that prevents more than one rule being matched for a given client. */ -#define ONLY_ONE_RULE_MATCH_PATCH 1 +#define ONLY_ONE_RULE_MATCH_PATCH 0 /* This patch makes it so dwm will only exit via quit() if no windows are open. * This is to prevent you accidentally losing all your work. @@ -896,7 +896,7 @@ * monitor (default). * https://dwm.suckless.org/patches/pertag/ */ -#define PERTAG_PATCH 0 +#define PERTAG_PATCH 1 /* Option to enable gaps on a per tag basis rather than globally. * Depends on both pertag and vanitygaps patches being enabled.