minor changes
This commit is contained in:
parent
648ee2fae9
commit
aeef7c9a17
4
build.sh
4
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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue