minor changes

This commit is contained in:
Luca Bilke 2024-01-31 15:53:53 +01:00
parent 648ee2fae9
commit aeef7c9a17
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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.