Browse Source

draw bar on exposure ;)

master
Anselm R. Garbe 18 years ago
parent
commit
59b4a5e4ca
3 changed files with 9 additions and 7 deletions
  1. +1
    -1
      Makefile
  2. +5
    -5
      config.mk
  3. +3
    -1
      event.c

+ 1
- 1
Makefile View File

@ -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}


+ 5
- 5
config.mk View File

@ -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


+ 3
- 1
event.c View File

@ -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);
}
}


Loading…
Cancel
Save