diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-30 10:27:44 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-30 10:27:44 +0200 |
commit | d993bcdb9e689890c130b20e0d87afc246435465 (patch) | |
tree | 58ae37363038aab38e444dbf44cebb032521703b | |
parent | up (diff) | |
download | dwmblocks-d993bcdb9e689890c130b20e0d87afc246435465.tar.gz dwmblocks-d993bcdb9e689890c130b20e0d87afc246435465.tar.bz2 dwmblocks-d993bcdb9e689890c130b20e0d87afc246435465.tar.xz dwmblocks-d993bcdb9e689890c130b20e0d87afc246435465.tar.zst dwmblocks-d993bcdb9e689890c130b20e0d87afc246435465.zip |
up
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | config.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ CC = gcc dwmblocks: dwmblocks.o $(CC) -pipe dwmblocks.o -L/usr/local/lib -lX11 -o dwmblocks dwmblocks.o: dwmblocks.c config.h - $(CC) -std=c99 -Wall -Wextra -pedantic -I/usr/local/include -pipe -c dwmblocks.c + $(CC) -c -std=c99 -Wall -Wextra -pedantic -pipe -I/usr/local/include dwmblocks.c clean: rm -f *.o *.gch dwmblocks install: dwmblocks @@ -39,7 +39,7 @@ static const Block blocks[] = { //Sets delimiter between status commands. NULL character ('\0') means no delimiter. static char *predelim = " "; -static char *postdelim = " "; +static char *postdelim = " "; // Have dwmblocks automatically recompile and run when you edit this file in // vim with the following line in your vimrc/init.vim: |