dwmblocks

I use polybar now
Log | Files | Refs | README | LICENSE

commit 91c492319b9554fef0ce192552e9ce489d592ec2
parent 4f6b1e11f248ed1a5d524b63d7a55c7c7ccb8d32
Author: Mr Chainman <mr.chainman@0box.eu>
Date:   Thu,  2 Jan 2020 16:31:24 +0100

Added chmod in Makefile to prevent execution errors

Diffstat:
MMakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,9 +1,10 @@ output: dwmblocks.o gcc dwmblocks.o -lX11 -o dwmblocks dwmblocks.o: dwmblocks.c blocks.h - gcc -c -lX11 dwmblocks.c + gcc -c -lX11 dwmblocks.c clean: rm *.o *.gch dwmblocks install: output mkdir -p /usr/local/bin cp -f dwmblocks /usr/local/bin + chmod 755 /usr/local/bin/dwmblocks