diff options
author | Malfurious <m@lfurio.us> | 2020-06-22 00:55:33 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-03-05 20:21:09 -0500 |
commit | 1533625373f1404709b8562d008008adc5d007c8 (patch) | |
tree | 07f1d51f3e9d8190a512c2bca9bea5748bb1681d /config.mk | |
parent | 48b85889b34d4b7198e305e36a0f6abac2444e61 (diff) | |
download | dwm-1533625373f1404709b8562d008008adc5d007c8.tar.gz dwm-1533625373f1404709b8562d008008adc5d007c8.zip |
patch: alpha
Allow dwm to have translucent bars, while keeping all the text on it
opaque, just like the alpha-patch for st.
Fix transparent borders
-----------------------
By default dwm might make windows' borders transparent when using
composit window manager (e.g. xcompmgr, picom). Alpha patch allows to
make borders opaque.
If all you want is to make borders opaque, you don't care about
statusbar opacity and/or have problems applying alpha patch, then you
might use fixborders patch instead.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ FREETYPEINC = /usr/include/freetype2 # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXrender # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} |