finish dwm.c
This commit is contained in:
parent
a5ef4d240f
commit
8c2b119417
7 changed files with 303 additions and 273 deletions
|
@ -1 +1,2 @@
|
||||||
IndentWidth: 4
|
IndentWidth: 4
|
||||||
|
ColumnLimit: 100
|
||||||
|
|
1
TODO.txt
1
TODO.txt
|
@ -1,2 +1 @@
|
||||||
TODO: check lockfullscreen parameter
|
|
||||||
TODO: https://github.com/szatanjl/dwm/commit/1529909466206016f2101457bbf37c67195714c8
|
TODO: https://github.com/szatanjl/dwm/commit/1529909466206016f2101457bbf37c67195714c8
|
||||||
|
|
44
compile_commands.json
Normal file
44
compile_commands.json
Normal 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"
|
||||||
|
}
|
||||||
|
]
|
|
@ -18,7 +18,7 @@ FREETYPELIBS = -lfontconfig -lXft
|
||||||
FREETYPEINC = /usr/include/freetype2
|
FREETYPEINC = /usr/include/freetype2
|
||||||
# OpenBSD (uncomment)
|
# OpenBSD (uncomment)
|
||||||
#FREETYPEINC = ${X11INC}/freetype2
|
#FREETYPEINC = ${X11INC}/freetype2
|
||||||
+#KVMLIB = -lkvm
|
#KVMLIB = -lkvm
|
||||||
|
|
||||||
# includes and libs
|
# includes and libs
|
||||||
INCS = -I${X11INC} -I${FREETYPEINC}
|
INCS = -I${X11INC} -I${FREETYPEINC}
|
||||||
|
|
Loading…
Add table
Reference in a new issue