diff options
| author | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-24 00:39:48 -0800 |
|---|---|---|
| committer | Warrick Lo <warrick.s.z.lo@gmail.com> | 2021-11-24 00:39:48 -0800 |
| commit | 46f916207a76f8a249c8f0a138f6c6c5d8aacaa0 (patch) | |
| tree | d647b06e047083e43502e72f0196a5d1aa00cda4 /config.mk | |
| parent | Add EWMH desktop & decoration hints support (diff) | |
Add window swallowing support
Requires the X Resource Extension.
Window swallowing will not be able to handle programs launched from
tmux.
Diffstat (limited to '')
| -rw-r--r-- | config.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,10 +19,11 @@ FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 +#KVMLIB = -lkvm # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} -lX11-xcb -lxcb -lxcb-res ${FREETYPELIBS} ${KVMLIB} # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} |