aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.14
-rw-r--r--main.c10
2 files changed, 3 insertions, 11 deletions
diff --git a/dmenu.1 b/dmenu.1
index c682711..88dd9ef 100644
--- a/dmenu.1
+++ b/dmenu.1
@@ -3,7 +3,6 @@
3dmenu \- dynamic menu 3dmenu \- dynamic menu
4.SH SYNOPSIS 4.SH SYNOPSIS
5.B dmenu 5.B dmenu
6.RB [ \-b ]
7.RB [ \-fn " <font>"] 6.RB [ \-fn " <font>"]
8.RB [ \-nb " <color>"] 7.RB [ \-nb " <color>"]
9.RB [ \-nf " <color>"] 8.RB [ \-nf " <color>"]
@@ -20,9 +19,6 @@ It manages huge amounts (up to 10.000 and more) of user defined menu items
20efficiently. 19efficiently.
21.SS Options 20.SS Options
22.TP 21.TP
23.B \-b
24makes dmenu appear at the screen bottom (by default it appears at the screen top).
25.TP
26.B \-fn <font> 22.B \-fn <font>
27defines the font. 23defines the font.
28.TP 24.TP
diff --git a/main.c b/main.c
index f1f71fd..224d298 100644
--- a/main.c
+++ b/main.c
@@ -342,7 +342,6 @@ DC dc = {0};
342 342
343int 343int
344main(int argc, char *argv[]) { 344main(int argc, char *argv[]) {
345 Bool bottom = False;
346 char *font = FONT; 345 char *font = FONT;
347 char *maxname; 346 char *maxname;
348 char *normbg = NORMBGCOLOR; 347 char *normbg = NORMBGCOLOR;
@@ -361,10 +360,7 @@ main(int argc, char *argv[]) {
361 timeout.tv_sec = 3; 360 timeout.tv_sec = 3;
362 /* command line args */ 361 /* command line args */
363 for(i = 1; i < argc; i++) 362 for(i = 1; i < argc; i++)
364 if(!strncmp(argv[i], "-b", 3)) { 363 if(!strncmp(argv[i], "-fn", 4)) {
365 bottom = True;
366 }
367 else if(!strncmp(argv[i], "-fn", 4)) {
368 if(++i < argc) font = argv[i]; 364 if(++i < argc) font = argv[i];
369 } 365 }
370 else if(!strncmp(argv[i], "-nb", 4)) { 366 else if(!strncmp(argv[i], "-nb", 4)) {
@@ -390,7 +386,7 @@ main(int argc, char *argv[]) {
390 exit(EXIT_SUCCESS); 386 exit(EXIT_SUCCESS);
391 } 387 }
392 else 388 else
393 eprint("usage: dmenu [-b] [-fn <font>] [-nb <color>] [-nf <color>] [-p <prompt>]\n" 389 eprint("usage: dmenu [-fn <font>] [-nb <color>] [-nf <color>] [-p <prompt>]\n"
394 " [-sb <color>] [-sf <color>] [-t <seconds>] [-v]\n", stdout); 390 " [-sb <color>] [-sf <color>] [-t <seconds>] [-v]\n", stdout);
395 setlocale(LC_CTYPE, ""); 391 setlocale(LC_CTYPE, "");
396 dpy = XOpenDisplay(0); 392 dpy = XOpenDisplay(0);
@@ -434,7 +430,7 @@ main(int argc, char *argv[]) {
434 mw = DisplayWidth(dpy, screen); 430 mw = DisplayWidth(dpy, screen);
435 mh = dc.font.height + 2; 431 mh = dc.font.height + 2;
436 win = XCreateWindow(dpy, root, 0, 432 win = XCreateWindow(dpy, root, 0,
437 bottom ? DisplayHeight(dpy, screen) - mh : 0, mw, mh, 0, 433 DisplayHeight(dpy, screen) - mh, mw, mh, 0,
438 DefaultDepth(dpy, screen), CopyFromParent, 434 DefaultDepth(dpy, screen), CopyFromParent,
439 DefaultVisual(dpy, screen), 435 DefaultVisual(dpy, screen),
440 CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); 436 CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);