Introduction
Introduction Statistics Contact Development Disclaimer Help
tdraw bar on exposure ;) - dwm - [fork] customized build of dwm, the dynamic wi…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 59b4a5e4cac68dfe6d245b8b708c3cb805f49f6d
parent 82384e385ee19fc553148f7aa73fafdcbe40461b
Author: Anselm R. Garbe <[email protected]>
Date: Fri, 14 Jul 2006 18:46:12 +0200
draw bar on exposure ;)
Diffstat:
M Makefile | 2 +-
M config.mk | 10 +++++-----
M event.c | 4 +++-
3 files changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/Makefile b/Makefile
t@@ -29,7 +29,7 @@ dwm: ${OBJ}
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
- rm -f dwm *.o core
+ rm -f dwm *.o core dwm-${VERSION}.tar.gz
dist: clean
mkdir -p dwm-${VERSION}
diff --git a/config.mk b/config.mk
t@@ -14,12 +14,12 @@ VERSION = 0.1
LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
# Linux/BSD
-CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
- -DVERSION=\"${VERSION}\"
-LDFLAGS = ${LIBS}
-#CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+#CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
# -DVERSION=\"${VERSION}\"
-#LDFLAGS = -g ${LIBS}
+#LDFLAGS = ${LIBS}
+CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+ -DVERSION=\"${VERSION}\"
+LDFLAGS = -g ${LIBS}
# Solaris
diff --git a/event.c b/event.c
t@@ -142,7 +142,9 @@ expose(XEvent *e)
Client *c;
if(ev->count == 0) {
- if((c = gettitle(ev->window)))
+ if(barwin == ev->window)
+ draw_bar();
+ else if((c = gettitle(ev->window)))
draw_client(c);
}
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.