1
0
Fork 0

what kind of weed is that?

This commit is contained in:
Ali H. Fardan 2016-09-05 02:17:30 +03:00
parent b9b6486cda
commit 720328cef9
3 changed files with 58 additions and 4 deletions

55
Makefile Normal file
View File

@ -0,0 +1,55 @@
# See LICENSE file for copyright and license details.
include config.mk
NAME=slstatus
SRC = ${NAME}.c
OBJ = ${SRC:.c=.o}
all: options ${NAME}
options:
@echo ${NAME} build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
.c.o:
@echo CC $<
@${CC} -c ${CFLAGS} $<
${OBJ}: config.h config.mk
config.h: config.def.h
@echo creating $@ from config.def.h
@cp config.def.h $@
${NAME}: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning
@rm -f ${NAME} ${OBJ} ${NAME}-${VERSION}.tar.gz
dist: clean
@echo creating dist tarball
@mkdir -p ${NAME}-${VERSION}
@cp -R Makefile config.mk LICENSE \
${SRC} ${NAME}-${VERSION}
@tar -cf ${NAME}-${VERSION}.tar ${NAME}-${VERSION}
@gzip ${NAME}-${VERSION}.tar
@rm -rf ${NAME}-${VERSION}
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
.PHONY: all options clean dist install uninstall

View File

@ -2,3 +2,4 @@ Todo
====
- slstatus icon (in that cool dwm icon style)
- include status_reset in the makefile

View File

@ -601,7 +601,6 @@ main(void)
char *res, *element;
struct arg argument;
stderr = stderr;
dpy = XOpenDisplay(NULL);
for (;;) {
@ -621,10 +620,9 @@ main(void)
free(res);
free(element);
}
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
}
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
XCloseDisplay(dpy);
return 0;