diff --git a/.cache/clangd/index/config.h.14A45122E62CB16C.idx b/.cache/clangd/index/config.h.14A45122E62CB16C.idx new file mode 100644 index 0000000..421f378 Binary files /dev/null and b/.cache/clangd/index/config.h.14A45122E62CB16C.idx differ diff --git a/.cache/clangd/index/drw.c.6834538A23A04307.idx b/.cache/clangd/index/drw.c.6834538A23A04307.idx new file mode 100644 index 0000000..37c7689 Binary files /dev/null and b/.cache/clangd/index/drw.c.6834538A23A04307.idx differ diff --git a/.cache/clangd/index/drw.h.266EA8A273703C59.idx b/.cache/clangd/index/drw.h.266EA8A273703C59.idx new file mode 100644 index 0000000..a9f0709 Binary files /dev/null and b/.cache/clangd/index/drw.h.266EA8A273703C59.idx differ diff --git a/.cache/clangd/index/dwm.c.54C81DBFF7F514A2.idx b/.cache/clangd/index/dwm.c.54C81DBFF7F514A2.idx new file mode 100644 index 0000000..42dafe9 Binary files /dev/null and b/.cache/clangd/index/dwm.c.54C81DBFF7F514A2.idx differ diff --git a/.cache/clangd/index/util.c.62E06D6BEF5CC572.idx b/.cache/clangd/index/util.c.62E06D6BEF5CC572.idx new file mode 100644 index 0000000..539d039 Binary files /dev/null and b/.cache/clangd/index/util.c.62E06D6BEF5CC572.idx differ diff --git a/.cache/clangd/index/util.h.A8CAB2B877D663AB.idx b/.cache/clangd/index/util.h.A8CAB2B877D663AB.idx new file mode 100644 index 0000000..44c126e Binary files /dev/null and b/.cache/clangd/index/util.h.A8CAB2B877D663AB.idx differ diff --git a/.cache/clangd/index/vanitygaps.c.7BDDBDC03C93BA35.idx b/.cache/clangd/index/vanitygaps.c.7BDDBDC03C93BA35.idx new file mode 100644 index 0000000..1019b1f Binary files /dev/null and b/.cache/clangd/index/vanitygaps.c.7BDDBDC03C93BA35.idx differ diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..2fcaa3f --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,65 @@ +[ + { + "arguments": [ + "/usr/bin/cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-Os", + "-I/usr/local/include", + "-I/usr/local/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"6.5\"", + "-DXINERAMA", + "drw.c" + ], + "directory": "/opt/suckless/dwm", + "file": "/opt/suckless/dwm/drw.c" + }, + { + "arguments": [ + "/usr/bin/cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-Os", + "-I/usr/local/include", + "-I/usr/local/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"6.5\"", + "-DXINERAMA", + "dwm.c" + ], + "directory": "/opt/suckless/dwm", + "file": "/opt/suckless/dwm/dwm.c" + }, + { + "arguments": [ + "/usr/bin/cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-Os", + "-I/usr/local/include", + "-I/usr/local/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"6.5\"", + "-DXINERAMA", + "util.c" + ], + "directory": "/opt/suckless/dwm", + "file": "/opt/suckless/dwm/util.c" + } +] diff --git a/config.def.h b/config.def.h index ca888f8..080bbd2 100644 --- a/config.def.h +++ b/config.def.h @@ -16,6 +16,7 @@ static const char col_gray3[] = "#dde1e6"; static const char col_gray4[] = "#ffffff"; static const char col_cyan[] = "#262626"; + static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray1 },