Compare commits

...

5 Commits
0.6 ... 0.8

4 changed files with 8 additions and 6 deletions

View File

@ -3,3 +3,5 @@ fcc8a282cb52c6a9343b461026b386825590cd31 0.1
d352e9dc112ee96aa5cad961a0ed880ae9ce7276 0.3
7acf0dde1120542917bae12e0e42293f9d2cc899 0.4
4a0ecd881c4fc15de4a0bebd79308b064be020ef 0.5
25f679fb19686140a907684ffcb423b9e9d44b53 0.6
5fc20d7158bd16b4d5f8d1c25e177680b6d54252 0.7

View File

@ -1,5 +1,5 @@
# dmenu version
VERSION = 0.6
VERSION = 0.8
# Customize below to fit your system

View File

@ -7,10 +7,10 @@ dmenu \- dynamic menu
.SH DESCRIPTION
.SS Overview
.B dmenu
is a generic, highly customizable, and efficient menu for X,
originally designed for
is a generic menu for X, originally designed for
.BR dwm (1).
It supports arbitrary, user defined menu contents.
It manages huge amounts (up to 10.000 and more) of user defined menu items
efficiently.
.SS Options
.TP
.B \-v

4
main.c
View File

@ -354,6 +354,8 @@ main(int argc, char *argv[])
/* main event loop */
while(running && !XNextEvent(dpy, &ev)) {
switch (ev.type) {
default: /* ignore all crap */
break;
case KeyPress:
kpress(&ev.xkey);
break;
@ -361,8 +363,6 @@ main(int argc, char *argv[])
if(ev.xexpose.count == 0)
drawmenu();
break;
default:
break;
}
}