Fork of st-flexipatch for personal use
Go to file
2019-09-16 09:51:41 +02:00
.gitignore Adding clipboard patch 2019-09-16 09:51:41 +02:00
arg.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
config.def.h Adding clipboard patch 2019-09-16 09:51:41 +02:00
config.mk Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
FAQ Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
LEGACY Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
LICENSE Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
Makefile Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
patches.h Adding clipboard patch 2019-09-16 09:51:41 +02:00
README Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
README.md Adding bold-is-not-bright patch 2019-09-16 09:40:40 +02:00
st.1 Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
st.c Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
st.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
st.info Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
TODO Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
win.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
x.c Adding clipboard patch 2019-09-16 09:51:41 +02:00

Similar to dwm-flexipatch this project has a different take on st patching. It uses preprocessor directives to decide whether or not to include a patch during build time. Essentially this means that this build, for better or worse, contains both the patched and the original code. The aim being that you can select which patches to include and the build will contain that code and nothing more.

For example to include the alpha patch then you would only need to flip this setting from 0 to 1 in patches.h:

#define ALPHA_PATCH 1

Refer to https://dwm.suckless.org/ for details on the st terminal, how to install it and how it works.


Changelog:

2019-09-16 - Added alpha, anysize and bold-is-not-bright patches

Patches included:

  • alpha

    • adds transparency for the terminal
  • anysize

    • allows st to reize to any pixel size rather than snapping to character width / height
  • bold-is-not-bright

    • by default bold text is rendered with a bold font in the bright variant of the current color
    • this patch makes bold text rendered simply as bold, leaving the color unaffected