Initial commit, adding alpha and anysize patches

This commit is contained in:
bakkeby 2019-09-16 09:35:57 +02:00
commit 5d336c2796
18 changed files with 6674 additions and 0 deletions

20
patches.h Normal file
View file

@ -0,0 +1,20 @@
/*
* This file contains patch control flags.
*
* In principle you should be able to mix and match any patches
* you may want. In cases where patches are logically incompatible
* one patch may take precedence over the other as noted in the
* relevant descriptions.
*/
/* Patches */
/* The alpha patch adds transparency for the terminal.
* https://st.suckless.org/patches/alpha/
*/
#define ALPHA_PATCH 1
/* This patch allows st to reize to any pixel size rather than snapping to character width/height.
* https://st.suckless.org/patches/anysize/
*/
#define ANYSIZE_PATCH 1