You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

754 lines
15 KiB

19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
18 years ago
18 years ago
18 years ago
18 years ago
19 years ago
18 years ago
18 years ago
18 years ago
18 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
19 years ago
19 years ago
19 years ago
17 years ago
17 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
19 years ago
18 years ago
18 years ago
18 years ago
19 years ago
19 years ago
19 years ago
19 years ago
18 years ago
18 years ago
19 years ago
18 years ago
18 years ago
19 years ago
18 years ago
19 years ago
19 years ago
19 years ago
18 years ago
19 years ago
19 years ago
19 years ago
18 years ago
19 years ago
18 years ago
18 years ago
18 years ago
18 years ago
19 years ago
18 years ago
18 years ago
18 years ago
17 years ago
18 years ago
19 years ago
18 years ago
18 years ago
18 years ago
19 years ago
  1. /* See LICENSE file for copyright and license details. */
  2. #include <ctype.h>
  3. #include <locale.h>
  4. #include <stdarg.h>
  5. #include <stdlib.h>
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <unistd.h>
  9. #include <X11/Xlib.h>
  10. #include <X11/Xutil.h>
  11. #include <X11/keysym.h>
  12. #ifdef XINERAMA
  13. #include <X11/extensions/Xinerama.h>
  14. #endif
  15. /* macros */
  16. #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
  17. /* enums */
  18. enum { ColFG, ColBG, ColLast };
  19. /* typedefs */
  20. typedef unsigned int uint;
  21. typedef unsigned long ulong;
  22. typedef struct {
  23. int x, y, w, h;
  24. ulong norm[ColLast];
  25. ulong sel[ColLast];
  26. Drawable drawable;
  27. GC gc;
  28. struct {
  29. XFontStruct *xfont;
  30. XFontSet set;
  31. int ascent;
  32. int descent;
  33. int height;
  34. } font;
  35. } DC; /* draw context */
  36. typedef struct Item Item;
  37. struct Item {
  38. char *text;
  39. Item *next; /* traverses all items */
  40. Item *left, *right; /* traverses items matching current search pattern */
  41. };
  42. /* forward declarations */
  43. void appenditem(Item *i, Item **list, Item **last);
  44. void calcoffsets(void);
  45. char *cistrstr(const char *s, const char *sub);
  46. void cleanup(void);
  47. void drawmenu(void);
  48. void drawtext(const char *text, ulong col[ColLast]);
  49. void *emalloc(uint size);
  50. void eprint(const char *errstr, ...);
  51. char *estrdup(const char *str);
  52. ulong getcolor(const char *colstr);
  53. Bool grabkeyboard(void);
  54. void initfont(const char *fontstr);
  55. void kpress(XKeyEvent * e);
  56. void match(char *pattern);
  57. void readstdin(void);
  58. void run(void);
  59. void setup(Bool topbar);
  60. uint textnw(const char *text, uint len);
  61. uint textw(const char *text);
  62. #include "config.h"
  63. /* variables */
  64. char *font = FONT;
  65. char *maxname = NULL;
  66. char *normbg = NORMBGCOLOR;
  67. char *normfg = NORMFGCOLOR;
  68. char *prompt = NULL;
  69. char *selbg = SELBGCOLOR;
  70. char *selfg = SELFGCOLOR;
  71. char text[4096];
  72. int screen;
  73. int ret = 0;
  74. uint cmdw = 0;
  75. uint mw, mh;
  76. uint promptw = 0;
  77. uint numlockmask = 0;
  78. Bool running = True;
  79. Display *dpy;
  80. DC dc = {0};
  81. Item *allitems = NULL; /* first of all items */
  82. Item *item = NULL; /* first of pattern matching items */
  83. Item *sel = NULL;
  84. Item *next = NULL;
  85. Item *prev = NULL;
  86. Item *curr = NULL;
  87. Window root, win;
  88. int (*fstrncmp)(const char *, const char *, size_t n) = strncmp;
  89. char *(*fstrstr)(const char *, const char *) = strstr;
  90. void
  91. appenditem(Item *i, Item **list, Item **last) {
  92. if(!(*last))
  93. *list = i;
  94. else
  95. (*last)->right = i;
  96. i->left = *last;
  97. i->right = NULL;
  98. *last = i;
  99. }
  100. void
  101. calcoffsets(void) {
  102. uint tw, w;
  103. if(!curr)
  104. return;
  105. w = promptw + cmdw + 2 * SPACE;
  106. for(next = curr; next; next=next->right) {
  107. tw = textw(next->text);
  108. if(tw > mw / 3)
  109. tw = mw / 3;
  110. w += tw;
  111. if(w > mw)
  112. break;
  113. }
  114. w = promptw + cmdw + 2 * SPACE;
  115. for(prev = curr; prev && prev->left; prev=prev->left) {
  116. tw = textw(prev->left->text);
  117. if(tw > mw / 3)
  118. tw = mw / 3;
  119. w += tw;
  120. if(w > mw)
  121. break;
  122. }
  123. }
  124. char *
  125. cistrstr(const char *s, const char *sub) {
  126. int c, csub;
  127. uint len;
  128. if(!sub)
  129. return (char *)s;
  130. if((c = *sub++) != 0) {
  131. c = tolower(c);
  132. len = strlen(sub);
  133. do {
  134. do {
  135. if((csub = *s++) == 0)
  136. return (NULL);
  137. }
  138. while(tolower(csub) != c);
  139. }
  140. while(strncasecmp(s, sub, len) != 0);
  141. s--;
  142. }
  143. return (char *)s;
  144. }
  145. void
  146. cleanup(void) {
  147. Item *itm;
  148. while(allitems) {
  149. itm = allitems->next;
  150. free(allitems->text);
  151. free(allitems);
  152. allitems = itm;
  153. }
  154. if(dc.font.set)
  155. XFreeFontSet(dpy, dc.font.set);
  156. else
  157. XFreeFont(dpy, dc.font.xfont);
  158. XFreePixmap(dpy, dc.drawable);
  159. XFreeGC(dpy, dc.gc);
  160. XDestroyWindow(dpy, win);
  161. XUngrabKeyboard(dpy, CurrentTime);
  162. }
  163. void
  164. drawmenu(void) {
  165. Item *i;
  166. dc.x = 0;
  167. dc.y = 0;
  168. dc.w = mw;
  169. dc.h = mh;
  170. drawtext(NULL, dc.norm);
  171. /* print prompt? */
  172. if(promptw) {
  173. dc.w = promptw;
  174. drawtext(prompt, dc.sel);
  175. }
  176. dc.x += promptw;
  177. dc.w = mw - promptw;
  178. /* print command */
  179. if(cmdw && item)
  180. dc.w = cmdw;
  181. drawtext(text[0] ? text : NULL, dc.norm);
  182. dc.x += cmdw;
  183. if(curr) {
  184. dc.w = SPACE;
  185. drawtext((curr && curr->left) ? "<" : NULL, dc.norm);
  186. dc.x += dc.w;
  187. /* determine maximum items */
  188. for(i = curr; i != next; i=i->right) {
  189. dc.w = textw(i->text);
  190. if(dc.w > mw / 3)
  191. dc.w = mw / 3;
  192. drawtext(i->text, (sel == i) ? dc.sel : dc.norm);
  193. dc.x += dc.w;
  194. }
  195. dc.x = mw - SPACE;
  196. dc.w = SPACE;
  197. drawtext(next ? ">" : NULL, dc.norm);
  198. }
  199. XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
  200. XFlush(dpy);
  201. }
  202. void
  203. drawtext(const char *text, ulong col[ColLast]) {
  204. int x, y, w, h;
  205. static char buf[256];
  206. uint len, olen;
  207. XRectangle r = { dc.x, dc.y, dc.w, dc.h };
  208. XSetForeground(dpy, dc.gc, col[ColBG]);
  209. XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
  210. if(!text)
  211. return;
  212. w = 0;
  213. olen = len = strlen(text);
  214. if(len >= sizeof buf)
  215. len = sizeof buf - 1;
  216. memcpy(buf, text, len);
  217. buf[len] = 0;
  218. h = dc.font.ascent + dc.font.descent;
  219. y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
  220. x = dc.x + (h / 2);
  221. /* shorten text if necessary */
  222. while(len && (w = textnw(buf, len)) > dc.w - h)
  223. buf[--len] = 0;
  224. if(len < olen) {
  225. if(len > 1)
  226. buf[len - 1] = '.';
  227. if(len > 2)
  228. buf[len - 2] = '.';
  229. if(len > 3)
  230. buf[len - 3] = '.';
  231. }
  232. if(w > dc.w)
  233. return; /* too long */
  234. XSetForeground(dpy, dc.gc, col[ColFG]);
  235. if(dc.font.set)
  236. XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
  237. else
  238. XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
  239. }
  240. void *
  241. emalloc(uint size) {
  242. void *res = malloc(size);
  243. if(!res)
  244. eprint("fatal: could not malloc() %u bytes\n", size);
  245. return res;
  246. }
  247. void
  248. eprint(const char *errstr, ...) {
  249. va_list ap;
  250. va_start(ap, errstr);
  251. vfprintf(stderr, errstr, ap);
  252. va_end(ap);
  253. exit(EXIT_FAILURE);
  254. }
  255. char *
  256. estrdup(const char *str) {
  257. void *res = strdup(str);
  258. if(!res)
  259. eprint("fatal: could not malloc() %u bytes\n", strlen(str));
  260. return res;
  261. }
  262. ulong
  263. getcolor(const char *colstr) {
  264. Colormap cmap = DefaultColormap(dpy, screen);
  265. XColor color;
  266. if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
  267. eprint("error, cannot allocate color '%s'\n", colstr);
  268. return color.pixel;
  269. }
  270. Bool
  271. grabkeyboard(void) {
  272. uint len;
  273. for(len = 1000; len; len--) {
  274. if(XGrabKeyboard(dpy, root, True, GrabModeAsync, GrabModeAsync, CurrentTime)
  275. == GrabSuccess)
  276. break;
  277. usleep(1000);
  278. }
  279. return len > 0;
  280. }
  281. void
  282. initfont(const char *fontstr) {
  283. char *def, **missing;
  284. int i, n;
  285. if(!fontstr || fontstr[0] == '\0')
  286. eprint("error, cannot load font: '%s'\n", fontstr);
  287. missing = NULL;
  288. if(dc.font.set)
  289. XFreeFontSet(dpy, dc.font.set);
  290. dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
  291. if(missing)
  292. XFreeStringList(missing);
  293. if(dc.font.set) {
  294. XFontSetExtents *font_extents;
  295. XFontStruct **xfonts;
  296. char **font_names;
  297. dc.font.ascent = dc.font.descent = 0;
  298. font_extents = XExtentsOfFontSet(dc.font.set);
  299. n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
  300. for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
  301. if(dc.font.ascent < (*xfonts)->ascent)
  302. dc.font.ascent = (*xfonts)->ascent;
  303. if(dc.font.descent < (*xfonts)->descent)
  304. dc.font.descent = (*xfonts)->descent;
  305. xfonts++;
  306. }
  307. }
  308. else {
  309. if(dc.font.xfont)
  310. XFreeFont(dpy, dc.font.xfont);
  311. dc.font.xfont = NULL;
  312. if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
  313. && !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
  314. eprint("error, cannot load font: '%s'\n", fontstr);
  315. dc.font.ascent = dc.font.xfont->ascent;
  316. dc.font.descent = dc.font.xfont->descent;
  317. }
  318. dc.font.height = dc.font.ascent + dc.font.descent;
  319. }
  320. void
  321. kpress(XKeyEvent * e) {
  322. char buf[32];
  323. int i, num;
  324. uint len;
  325. KeySym ksym;
  326. len = strlen(text);
  327. buf[0] = 0;
  328. num = XLookupString(e, buf, sizeof buf, &ksym, 0);
  329. if(IsKeypadKey(ksym))
  330. if(ksym == XK_KP_Enter)
  331. ksym = XK_Return;
  332. else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
  333. ksym = (ksym - XK_KP_0) + XK_0;
  334. if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
  335. || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
  336. || IsPrivateKeypadKey(ksym))
  337. return;
  338. /* first check if a control mask is omitted */
  339. if(e->state & ControlMask) {
  340. switch (ksym) {
  341. default: /* ignore other control sequences */
  342. return;
  343. case XK_bracketleft:
  344. ksym = XK_Escape;
  345. break;
  346. case XK_h:
  347. case XK_H:
  348. ksym = XK_BackSpace;
  349. break;
  350. case XK_i:
  351. case XK_I:
  352. ksym = XK_Tab;
  353. break;
  354. case XK_j:
  355. case XK_J:
  356. ksym = XK_Return;
  357. break;
  358. case XK_u:
  359. case XK_U:
  360. text[0] = 0;
  361. match(text);
  362. drawmenu();
  363. return;
  364. case XK_w:
  365. case XK_W:
  366. if(len) {
  367. i = len - 1;
  368. while(i >= 0 && text[i] == ' ')
  369. text[i--] = 0;
  370. while(i >= 0 && text[i] != ' ')
  371. text[i--] = 0;
  372. match(text);
  373. drawmenu();
  374. }
  375. return;
  376. }
  377. }
  378. if(CLEANMASK(e->state) & Mod1Mask) {
  379. switch(ksym) {
  380. default: return;
  381. case XK_h:
  382. ksym = XK_Left;
  383. break;
  384. case XK_l:
  385. ksym = XK_Right;
  386. break;
  387. case XK_j:
  388. ksym = XK_Next;
  389. break;
  390. case XK_k:
  391. ksym = XK_Prior;
  392. break;
  393. case XK_g:
  394. ksym = XK_Home;
  395. break;
  396. case XK_G:
  397. ksym = XK_End;
  398. break;
  399. }
  400. }
  401. switch(ksym) {
  402. default:
  403. if(num && !iscntrl((int) buf[0])) {
  404. buf[num] = 0;
  405. if(len > 0)
  406. strncat(text, buf, sizeof text);
  407. else
  408. strncpy(text, buf, sizeof text);
  409. match(text);
  410. }
  411. break;
  412. case XK_BackSpace:
  413. if(len) {
  414. text[--len] = 0;
  415. match(text);
  416. }
  417. break;
  418. case XK_End:
  419. if(!item)
  420. return;
  421. while(next) {
  422. sel = curr = next;
  423. calcoffsets();
  424. }
  425. while(sel && sel->right)
  426. sel = sel->right;
  427. break;
  428. case XK_Escape:
  429. ret = 1;
  430. running = False;
  431. break;
  432. case XK_Home:
  433. if(!item)
  434. return;
  435. sel = curr = item;
  436. calcoffsets();
  437. break;
  438. case XK_Left:
  439. if(!(sel && sel->left))
  440. return;
  441. sel=sel->left;
  442. if(sel->right == curr) {
  443. curr = prev;
  444. calcoffsets();
  445. }
  446. break;
  447. case XK_Next:
  448. if(!next)
  449. return;
  450. sel = curr = next;
  451. calcoffsets();
  452. break;
  453. case XK_Prior:
  454. if(!prev)
  455. return;
  456. sel = curr = prev;
  457. calcoffsets();
  458. break;
  459. case XK_Return:
  460. if((e->state & ShiftMask) && text)
  461. fprintf(stdout, "%s", text);
  462. else if(sel)
  463. fprintf(stdout, "%s", sel->text);
  464. else if(text)
  465. fprintf(stdout, "%s", text);
  466. fflush(stdout);
  467. running = False;
  468. break;
  469. case XK_Right:
  470. if(!(sel && sel->right))
  471. return;
  472. sel=sel->right;
  473. if(sel == next) {
  474. curr = next;
  475. calcoffsets();
  476. }
  477. break;
  478. case XK_Tab:
  479. if(!sel)
  480. return;
  481. strncpy(text, sel->text, sizeof text);
  482. match(text);
  483. break;
  484. }
  485. drawmenu();
  486. }
  487. void
  488. match(char *pattern) {
  489. uint plen;
  490. Item *i, *itemend, *lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
  491. if(!pattern)
  492. return;
  493. plen = strlen(pattern);
  494. item = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
  495. for(i = allitems; i; i = i->next)
  496. if(!fstrncmp(pattern, i->text, plen + 1))
  497. appenditem(i, &lexact, &exactend);
  498. else if(!fstrncmp(pattern, i->text, plen))
  499. appenditem(i, &lprefix, &prefixend);
  500. else if(fstrstr(i->text, pattern))
  501. appenditem(i, &lsubstr, &substrend);
  502. if(lexact) {
  503. item = lexact;
  504. itemend = exactend;
  505. }
  506. if(lprefix) {
  507. if(itemend) {
  508. itemend->right = lprefix;
  509. lprefix->left = itemend;
  510. }
  511. else
  512. item = lprefix;
  513. itemend = prefixend;
  514. }
  515. if(lsubstr) {
  516. if(itemend) {
  517. itemend->right = lsubstr;
  518. lsubstr->left = itemend;
  519. }
  520. else
  521. item = lsubstr;
  522. }
  523. curr = prev = next = sel = item;
  524. calcoffsets();
  525. }
  526. void
  527. readstdin(void) {
  528. char *p, buf[1024];
  529. uint len = 0, max = 0;
  530. Item *i, *new;
  531. i = 0;
  532. while(fgets(buf, sizeof buf, stdin)) {
  533. len = strlen(buf);
  534. if (buf[len - 1] == '\n')
  535. buf[len - 1] = 0;
  536. p = estrdup(buf);
  537. if(max < len) {
  538. maxname = p;
  539. max = len;
  540. }
  541. new = emalloc(sizeof(Item));
  542. new->next = new->left = new->right = NULL;
  543. new->text = p;
  544. if(!i)
  545. allitems = new;
  546. else
  547. i->next = new;
  548. i = new;
  549. }
  550. }
  551. void
  552. run(void) {
  553. XEvent ev;
  554. /* main event loop */
  555. while(running && !XNextEvent(dpy, &ev))
  556. switch (ev.type) {
  557. default: /* ignore all crap */
  558. break;
  559. case KeyPress:
  560. kpress(&ev.xkey);
  561. break;
  562. case Expose:
  563. if(ev.xexpose.count == 0)
  564. drawmenu();
  565. break;
  566. }
  567. }
  568. void
  569. setup(Bool topbar) {
  570. int i, j, x, y;
  571. XModifierKeymap *modmap;
  572. XSetWindowAttributes wa;
  573. #if XINERAMA
  574. XineramaScreenInfo *info = NULL;
  575. #endif
  576. /* init modifier map */
  577. modmap = XGetModifierMapping(dpy);
  578. for(i = 0; i < 8; i++)
  579. for(j = 0; j < modmap->max_keypermod; j++) {
  580. if(modmap->modifiermap[i * modmap->max_keypermod + j]
  581. == XKeysymToKeycode(dpy, XK_Num_Lock))
  582. numlockmask = (1 << i);
  583. }
  584. XFreeModifiermap(modmap);
  585. /* style */
  586. dc.norm[ColBG] = getcolor(normbg);
  587. dc.norm[ColFG] = getcolor(normfg);
  588. dc.sel[ColBG] = getcolor(selbg);
  589. dc.sel[ColFG] = getcolor(selfg);
  590. initfont(font);
  591. /* menu window */
  592. wa.override_redirect = 1;
  593. wa.background_pixmap = ParentRelative;
  594. wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
  595. /* menu window geometry */
  596. mh = dc.font.height + 2;
  597. #if XINERAMA
  598. if(XineramaIsActive(dpy)) {
  599. info = XineramaQueryScreens(dpy, &i);
  600. x = info[0].x_org;
  601. y = topbar ? info[0].y_org : info[0].y_org + info[0].height - mh;
  602. mw = info[0].width;
  603. XFree(info);
  604. }
  605. else
  606. #endif
  607. {
  608. x = 0;
  609. y = topbar ? 0 : DisplayHeight(dpy, screen) - mh;
  610. mw = DisplayWidth(dpy, screen);
  611. }
  612. win = XCreateWindow(dpy, root, x, y, mw, mh, 0,
  613. DefaultDepth(dpy, screen), CopyFromParent,
  614. DefaultVisual(dpy, screen),
  615. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  616. /* pixmap */
  617. dc.drawable = XCreatePixmap(dpy, root, mw, mh, DefaultDepth(dpy, screen));
  618. dc.gc = XCreateGC(dpy, root, 0, 0);
  619. XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
  620. if(!dc.font.set)
  621. XSetFont(dpy, dc.gc, dc.font.xfont->fid);
  622. if(maxname)
  623. cmdw = textw(maxname);
  624. if(cmdw > mw / 3)
  625. cmdw = mw / 3;
  626. if(prompt)
  627. promptw = textw(prompt);
  628. if(promptw > mw / 5)
  629. promptw = mw / 5;
  630. text[0] = 0;
  631. match(text);
  632. XMapRaised(dpy, win);
  633. }
  634. uint
  635. textnw(const char *text, uint len) {
  636. XRectangle r;
  637. if(dc.font.set) {
  638. XmbTextExtents(dc.font.set, text, len, NULL, &r);
  639. return r.width;
  640. }
  641. return XTextWidth(dc.font.xfont, text, len);
  642. }
  643. uint
  644. textw(const char *text) {
  645. return textnw(text, strlen(text)) + dc.font.height;
  646. }
  647. int
  648. main(int argc, char *argv[]) {
  649. uint i;
  650. Bool topbar = True;
  651. /* command line args */
  652. for(i = 1; i < argc; i++)
  653. if(!strcmp(argv[i], "-i")) {
  654. fstrncmp = strncasecmp;
  655. fstrstr = cistrstr;
  656. }
  657. else if(!strcmp(argv[i], "-b"))
  658. topbar = False;
  659. else if(!strcmp(argv[i], "-fn")) {
  660. if(++i < argc) font = argv[i];
  661. }
  662. else if(!strcmp(argv[i], "-nb")) {
  663. if(++i < argc) normbg = argv[i];
  664. }
  665. else if(!strcmp(argv[i], "-nf")) {
  666. if(++i < argc) normfg = argv[i];
  667. }
  668. else if(!strcmp(argv[i], "-p")) {
  669. if(++i < argc) prompt = argv[i];
  670. }
  671. else if(!strcmp(argv[i], "-sb")) {
  672. if(++i < argc) selbg = argv[i];
  673. }
  674. else if(!strcmp(argv[i], "-sf")) {
  675. if(++i < argc) selfg = argv[i];
  676. }
  677. else if(!strcmp(argv[i], "-v"))
  678. eprint("dmenu-"VERSION", © 2006-2008 dmenu engineers, see LICENSE for details\n");
  679. else
  680. eprint("usage: dmenu [-i] [-b] [-fn <font>] [-nb <color>] [-nf <color>]\n"
  681. " [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n");
  682. setlocale(LC_CTYPE, "");
  683. if(!(dpy = XOpenDisplay(0)))
  684. eprint("dmenu: cannot open display\n");
  685. screen = DefaultScreen(dpy);
  686. root = RootWindow(dpy, screen);
  687. if(isatty(STDIN_FILENO)) {
  688. readstdin();
  689. running = grabkeyboard();
  690. }
  691. else { /* prevent keypress loss */
  692. running = grabkeyboard();
  693. readstdin();
  694. }
  695. setup(topbar);
  696. drawmenu();
  697. XSync(dpy, False);
  698. run();
  699. cleanup();
  700. XCloseDisplay(dpy);
  701. return ret;
  702. }