diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-17 11:20:59 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-17 11:20:59 +0200 |
commit | 232595accf388efedcce87687378e3c04dd88b95 (patch) | |
tree | cdf48422519d33916ce54e3fc92f83ba6ccf92df | |
parent | Makefile update (diff) | |
download | dwmblocks-232595accf388efedcce87687378e3c04dd88b95.tar.gz dwmblocks-232595accf388efedcce87687378e3c04dd88b95.tar.bz2 dwmblocks-232595accf388efedcce87687378e3c04dd88b95.tar.xz dwmblocks-232595accf388efedcce87687378e3c04dd88b95.tar.zst dwmblocks-232595accf388efedcce87687378e3c04dd88b95.zip |
update
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | config.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ CC = cc dwmblocks: dwmblocks.o $(CC) -march=tigerlake -O3 -pipe dwmblocks.o -L/usr/local/lib -lX11 -o dwmblocks dwmblocks.o: dwmblocks.c config.h - $(CC) -I/usr/local/include -march=tigerlake -O3 -pipe -c dwmblocks.c + $(CC) -std=c99 -Wall -Wextra -pedantic -I/usr/local/include -march=tigerlake -O3 -pipe -c dwmblocks.c clean: rm -f *.o *.gch dwmblocks install: dwmblocks @@ -2,7 +2,7 @@ static const Block blocks[] = { /*Icon Command Update interval Update signal*/ { "", "sb-mpd", 1, 11 }, - { "", "sb-mailbox", 120, 12 }, + { "", "sb-mailbox", 30, 12 }, { "", "sb-forecast", 3600, 11 }, { "", "sb-cpu", 1, 12 }, { "", "sb-memory", 5, 12 }, |