finish dwm.c

This commit is contained in:
Luca Bilke 2023-02-03 18:40:03 +01:00
parent a5ef4d240f
commit 8c2b119417
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
7 changed files with 303 additions and 273 deletions

View File

@ -1 +1,2 @@
IndentWidth: 4
ColumnLimit: 100

View File

@ -1,2 +1 @@
TODO: check lockfullscreen parameter
TODO: https://github.com/szatanjl/dwm/commit/1529909466206016f2101457bbf37c67195714c8

44
compile_commands.json Normal file
View File

@ -0,0 +1,44 @@
[
{
"arguments": [
"/usr/bin/cc",
"-c",
"-std=c99",
"-pedantic",
"-Wall",
"-Wno-deprecated-declarations",
"-Os",
"-I/usr/X11R6/include",
"-I/usr/include/freetype2",
"-D_DEFAULT_SOURCE",
"-D_BSD_SOURCE",
"-D_POSIX_C_SOURCE=200809L",
"-DVERSION=\"6.4\"",
"-DXINERAMA",
"drw.c"
],
"directory": "/home/luca/.local/src/dwm",
"file": "/home/luca/.local/src/dwm/drw.c"
},
{
"arguments": [
"/usr/bin/cc",
"-c",
"-std=c99",
"-pedantic",
"-Wall",
"-Wno-deprecated-declarations",
"-Os",
"-I/usr/X11R6/include",
"-I/usr/include/freetype2",
"-D_DEFAULT_SOURCE",
"-D_BSD_SOURCE",
"-D_POSIX_C_SOURCE=200809L",
"-DVERSION=\"6.4\"",
"-DXINERAMA",
"dwm.c"
],
"directory": "/home/luca/.local/src/dwm",
"file": "/home/luca/.local/src/dwm/dwm.c"
}
]

View File

@ -18,7 +18,7 @@ FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
+#KVMLIB = -lkvm
#KVMLIB = -lkvm
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}

528
dwm.c

File diff suppressed because it is too large Load Diff