dmenu/dmenu.c

651 lines
14 KiB
C
Raw Normal View History

2007-05-30 12:19:06 +02:00
/* See LICENSE file for copyright and license details. */
2006-08-04 09:35:27 +02:00
#include <ctype.h>
2008-08-25 10:38:19 +02:00
#include <locale.h>
2006-08-04 09:35:27 +02:00
#include <stdio.h>
2008-06-13 12:46:50 +02:00
#include <stdlib.h>
2006-08-04 09:35:27 +02:00
#include <string.h>
#include <unistd.h>
2008-06-13 12:46:50 +02:00
#include <X11/keysym.h>
2007-09-16 20:14:09 +02:00
#include <X11/Xlib.h>
2006-08-04 09:35:27 +02:00
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif
#include <draw.h>
#include "config.h"
#define INRECT(x,y,rx,ry,rw,rh) ((rx) < (x) && (x) < (rx)+(rw) && (ry) < (y) && (y) < (ry)+(rh))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define IS_UTF8_1ST_CHAR(c) (((c) & 0xc0) == 0xc0 || ((c) & 0x80) == 0x00)
2007-01-11 15:52:37 +01:00
2006-08-04 09:35:27 +02:00
typedef struct Item Item;
struct Item {
char *text;
2010-05-28 12:42:49 +02:00
Item *next; /* traverses all items */
Item *left, *right; /* traverses items matching current search pattern */
2006-08-04 09:35:27 +02:00
};
2008-06-13 12:46:50 +02:00
static void appenditem(Item *i, Item **list, Item **last);
static void calcoffsetsh(void);
static void calcoffsetsv(void);
2008-06-13 12:46:50 +02:00
static char *cistrstr(const char *s, const char *sub);
static void cleanup(void);
2010-07-30 11:25:55 +02:00
static void drawitem(const char *s, unsigned long col[ColLast]);
static void drawmenu(void);
static void drawmenuh(void);
static void drawmenuv(void);
static void grabkeyboard(void);
static void keypress(XKeyEvent *e);
2010-07-02 07:49:05 +02:00
static void match(void);
2008-06-13 12:46:50 +02:00
static void readstdin(void);
static void run(void);
static void setup(void);
2007-09-16 20:14:09 +02:00
static char **argp = NULL;
2008-06-13 12:46:50 +02:00
static char *maxname = NULL;
static char *prompt;
static char text[4096];
static int promptw;
static int screen;
static size_t cur = 0;
2010-07-02 07:49:05 +02:00
static unsigned int cmdw = 0;
2010-06-23 14:49:24 +02:00
static unsigned int lines = 0;
static unsigned int numlockmask;
static unsigned int mw, mh;
static unsigned long normcol[ColLast];
static unsigned long selcol[ColLast];
static Bool topbar = True;
static DC dc;
static Display *dpy;
2010-05-28 12:42:49 +02:00
static Item *allitems = NULL; /* first of all items */
static Item *item = NULL; /* first of pattern matching items */
2008-06-13 12:46:50 +02:00
static Item *sel = NULL;
static Item *next = NULL;
static Item *prev = NULL;
static Item *curr = NULL;
static Window win, root;
2010-06-16 16:36:17 +02:00
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
2008-06-13 12:46:50 +02:00
static char *(*fstrstr)(const char *, const char *) = strstr;
static void (*calcoffsets)(void) = calcoffsetsh;
2007-09-17 20:53:14 +02:00
2008-03-22 15:52:00 +01:00
void
appenditem(Item *i, Item **list, Item **last) {
if(!(*last))
*list = i;
else
2008-03-22 15:52:00 +01:00
(*last)->right = i;
i->left = *last;
i->right = NULL;
2008-03-22 15:52:00 +01:00
*last = i;
}
2007-09-17 20:53:14 +02:00
void
calcoffsetsh(void) {
2010-07-02 07:49:05 +02:00
unsigned int w, x;
2006-08-04 09:35:27 +02:00
2010-07-02 07:49:05 +02:00
w = promptw + cmdw + textw(&dc, "<") + textw(&dc, ">");
for(x = w, next = curr; next; next = next->right)
2010-07-02 04:44:01 +02:00
if((x += MIN(textw(&dc, next->text), mw / 3)) > mw)
break;
2010-07-02 07:49:05 +02:00
for(x = w, prev = curr; prev && prev->left; prev = prev->left)
2010-07-02 04:44:01 +02:00
if((x += MIN(textw(&dc, prev->left->text), mw / 3)) > mw)
break;
2006-08-04 09:35:27 +02:00
}
void
calcoffsetsv(void) {
unsigned int i;
next = prev = curr;
for(i = 0; i < lines && next; i++)
next = next->right;
2010-06-30 01:52:14 +02:00
mh = (dc.font.height + 2) * (i + 1);
for(i = 0; i < lines && prev && prev->left; i++)
prev = prev->left;
}
char *
cistrstr(const char *s, const char *sub) {
int c, csub;
2008-07-16 19:18:38 +02:00
unsigned int len;
if(!sub)
return (char *)s;
2010-06-16 16:36:17 +02:00
if((c = tolower(*sub++)) != '\0') {
len = strlen(sub);
do {
do {
2010-04-07 18:15:34 +02:00
if((csub = *s++) == '\0')
return NULL;
}
while(tolower(csub) != c);
}
while(strncasecmp(s, sub, len) != 0);
s--;
}
return (char *)s;
}
2007-09-17 20:53:14 +02:00
void
cleanup(void) {
2010-06-23 14:49:24 +02:00
Item *itm;
while(allitems) {
itm = allitems->next;
free(allitems->text);
free(allitems);
allitems = itm;
}
2010-06-24 17:18:18 +02:00
cleanupdraw(&dc);
2007-09-17 20:53:14 +02:00
XDestroyWindow(dpy, win);
XUngrabKeyboard(dpy, CurrentTime);
2010-07-02 04:44:01 +02:00
XCloseDisplay(dpy);
2007-09-17 20:53:14 +02:00
}
void
drawitem(const char *s, unsigned long col[ColLast]) {
const char *p;
unsigned int w = textnw(&dc, text, strlen(text));
drawbox(&dc, col);
drawtext(&dc, s, col);
for(p = fstrstr(s, text); *text && (p = fstrstr(p, text)); p++)
drawline(&dc, textnw(&dc, s, p-s) + dc.h/2 - 1, dc.h-2, w, 1, col);
}
void
drawmenu(void) {
2006-08-04 10:23:36 +02:00
dc.x = 0;
dc.y = 0;
dc.w = mw;
dc.h = mh;
2010-07-27 14:40:32 +02:00
drawbox(&dc, normcol);
2010-06-30 01:52:14 +02:00
dc.h = dc.font.height + 2;
dc.y = topbar ? 0 : mh - dc.h;
/* print prompt? */
2010-05-03 00:17:02 +02:00
if(prompt) {
dc.w = promptw;
2010-07-30 11:25:55 +02:00
drawbox(&dc, selcol);
2010-07-02 06:50:19 +02:00
drawtext(&dc, prompt, selcol);
2010-05-03 00:17:02 +02:00
dc.x += dc.w;
}
2010-05-03 00:17:02 +02:00
dc.w = mw - dc.x;
2006-08-04 10:23:36 +02:00
/* print command */
2010-04-14 19:35:19 +02:00
if(cmdw && item && lines == 0)
2006-08-04 10:23:36 +02:00
dc.w = cmdw;
2010-07-02 06:50:19 +02:00
drawtext(&dc, text, normcol);
drawline(&dc, textnw(&dc, text, cur) + dc.h/2 - 2, 2, 1, dc.h-4, normcol);
2010-06-30 01:52:14 +02:00
if(lines > 0)
drawmenuv();
2010-06-30 11:45:24 +02:00
else if(curr)
2010-06-30 01:52:14 +02:00
drawmenuh();
2010-07-02 06:50:19 +02:00
commitdraw(&dc, win);
2006-08-04 10:23:36 +02:00
}
2010-03-07 09:32:16 +01:00
void
drawmenuh(void) {
Item *i;
2010-04-14 19:35:19 +02:00
dc.x += cmdw;
2010-07-02 07:49:05 +02:00
dc.w = textw(&dc, "<");
2010-07-02 06:50:19 +02:00
drawtext(&dc, curr->left ? "<" : NULL, normcol);
2010-03-07 09:32:16 +01:00
dc.x += dc.w;
2010-06-25 05:33:41 +02:00
for(i = curr; i != next; i = i->right) {
2010-06-24 17:18:18 +02:00
dc.w = MIN(textw(&dc, i->text), mw / 3);
2010-07-30 10:18:35 +02:00
drawitem(i->text, (sel == i) ? selcol : normcol);
2010-03-07 09:32:16 +01:00
dc.x += dc.w;
}
2010-07-02 07:49:05 +02:00
dc.w = textw(&dc, ">");
2010-05-03 00:17:02 +02:00
dc.x = mw - dc.w;
2010-07-02 06:50:19 +02:00
drawtext(&dc, next ? ">" : NULL, normcol);
2010-03-07 09:32:16 +01:00
}
void
drawmenuv(void) {
Item *i;
2010-06-30 01:52:14 +02:00
XWindowAttributes wa;
2010-06-30 01:52:14 +02:00
dc.y = topbar ? dc.h : 0;
2010-05-05 12:42:39 +02:00
dc.w = mw - dc.x;
2010-06-25 05:33:41 +02:00
for(i = curr; i != next; i = i->right) {
2010-07-30 10:18:35 +02:00
drawitem(i->text, (sel == i) ? selcol : normcol);
2010-06-11 10:24:33 +02:00
dc.y += dc.h;
}
2010-06-30 01:52:14 +02:00
if(!XGetWindowAttributes(dpy, win, &wa))
eprint("cannot get window attributes");
XMoveResizeWindow(dpy, win, wa.x, wa.y + (topbar ? 0 : wa.height - mh), mw, mh);
}
2007-09-17 20:53:14 +02:00
void
grabkeyboard(void) {
unsigned int n;
for(n = 0; n < 1000; n++) {
if(!XGrabKeyboard(dpy, root, True, GrabModeAsync, GrabModeAsync, CurrentTime))
return;
usleep(1000);
}
exit(EXIT_FAILURE);
}
void
keypress(XKeyEvent *e) {
2010-03-22 08:50:26 +01:00
char buf[sizeof text];
2010-06-20 01:44:26 +02:00
int num;
unsigned int i, len;
2006-08-04 10:23:36 +02:00
KeySym ksym;
2006-08-04 09:35:27 +02:00
2006-08-04 10:23:36 +02:00
len = strlen(text);
num = XLookupString(e, buf, sizeof buf, &ksym, NULL);
2010-06-16 16:36:17 +02:00
if(ksym == XK_KP_Enter)
ksym = XK_Return;
else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
ksym = (ksym - XK_KP_0) + XK_0;
else if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|| IsPrivateKeypadKey(ksym))
2006-08-04 09:35:27 +02:00
return;
/* first check if a control mask is omitted */
if(e->state & ControlMask) {
2010-06-20 02:19:17 +02:00
switch(tolower(ksym)) {
default:
2006-08-04 09:35:27 +02:00
return;
2010-04-01 19:10:41 +02:00
case XK_a:
2010-04-01 22:31:09 +02:00
ksym = XK_Home;
2010-04-01 19:10:41 +02:00
break;
case XK_b:
ksym = XK_Left;
break;
case XK_c:
2007-01-10 18:06:16 +01:00
ksym = XK_Escape;
2006-08-04 09:35:27 +02:00
break;
2010-04-01 22:31:09 +02:00
case XK_e:
ksym = XK_End;
break;
case XK_f:
ksym = XK_Right;
break;
2006-08-04 09:35:27 +02:00
case XK_h:
ksym = XK_BackSpace;
break;
case XK_i:
ksym = XK_Tab;
break;
case XK_j:
2010-06-25 05:33:41 +02:00
case XK_m:
ksym = XK_Return;
break;
case XK_k:
text[cur] = '\0';
break;
case XK_n:
ksym = XK_Down;
break;
case XK_p:
ksym = XK_Up;
break;
2006-08-04 09:35:27 +02:00
case XK_u:
memmove(text, text + cur, sizeof text - cur + 1);
cur = 0;
2010-07-02 07:49:05 +02:00
match();
break;
case XK_w:
if(cur == 0)
2010-06-23 13:04:54 +02:00
return;
i = cur;
2010-06-23 13:04:54 +02:00
while(i-- > 0 && text[i] == ' ');
while(i-- > 0 && text[i] != ' ');
memmove(text + i + 1, text + cur, sizeof text - cur + 1);
cur = i + 1;
2010-07-02 07:49:05 +02:00
match();
break;
case XK_y:
{
FILE *fp;
char *s;
if(!(fp = fopen("sselp", "r")))
eprint("cannot popen sselp\n");
s = fgets(buf, sizeof buf, fp);
fclose(fp);
if(!s)
return;
}
num = strlen(buf);
if(num && buf[num-1] == '\n')
buf[--num] = '\0';
break;
}
}
2006-08-04 09:35:27 +02:00
switch(ksym) {
default:
2010-06-23 13:04:54 +02:00
num = MIN(num, sizeof text);
if(num && !iscntrl((int) buf[0])) {
memmove(text + cur + num, text + cur, sizeof text - cur - num);
memcpy(text + cur, buf, num);
cur += num;
2010-07-02 07:49:05 +02:00
match();
}
break;
case XK_BackSpace:
if(cur == 0)
2010-06-20 01:44:26 +02:00
return;
for(i = 1; len - i > 0 && !IS_UTF8_1ST_CHAR(text[cur - i]); i++);
memmove(text + cur - i, text + cur, sizeof text - cur + i);
cur -= i;
match();
break;
case XK_Delete:
if(cur == len)
return;
for(i = 1; cur + i < len && !IS_UTF8_1ST_CHAR(text[cur + i]); i++);
memmove(text + cur, text + cur + i, sizeof text - cur);
2010-07-02 07:49:05 +02:00
match();
2010-03-22 08:50:26 +01:00
break;
case XK_End:
if(cur < len) {
cur = len;
break;
}
while(next) {
sel = curr = next;
calcoffsets();
}
2006-12-14 09:30:23 +01:00
while(sel && sel->right)
sel = sel->right;
break;
case XK_Escape:
2010-07-02 04:44:01 +02:00
exit(EXIT_FAILURE);
case XK_Home:
if(sel == item) {
cur = 0;
break;
}
sel = curr = item;
calcoffsets();
break;
2006-08-04 09:35:27 +02:00
case XK_Left:
if(cur > 0 && (!sel || !sel->left || lines > 0)) {
while(cur-- > 0 && !IS_UTF8_1ST_CHAR(text[cur]));
break;
}
if(lines > 0)
return;
case XK_Up:
if(!sel || !sel->left)
return;
sel = sel->left;
if(sel->right == curr) {
curr = prev;
calcoffsets();
}
2006-08-04 09:35:27 +02:00
break;
case XK_Next:
2006-12-14 09:30:23 +01:00
if(!next)
return;
sel = curr = next;
calcoffsets();
2006-08-04 09:35:27 +02:00
break;
case XK_Prior:
2006-12-14 09:30:23 +01:00
if(!prev)
return;
sel = curr = prev;
calcoffsets();
2006-08-04 09:35:27 +02:00
break;
case XK_Return:
fprintf(stdout, "%s", ((e->state & ShiftMask) || sel) ? sel->text : text);
2006-08-04 09:35:27 +02:00
fflush(stdout);
2010-07-02 04:44:01 +02:00
exit(EXIT_SUCCESS);
case XK_Right:
if(cur < len) {
while(cur++ < len && !IS_UTF8_1ST_CHAR(text[cur]));
break;
}
if(lines > 0)
return;
case XK_Down:
if(!sel || !sel->right)
return;
sel = sel->right;
if(sel == next) {
curr = next;
calcoffsets();
}
2006-08-04 09:35:27 +02:00
break;
case XK_Tab:
if(!sel)
return;
strncpy(text, sel->text, sizeof text);
cur = strlen(text);
match();
break;
2006-08-04 09:35:27 +02:00
}
drawmenu();
2006-08-04 09:35:27 +02:00
}
2007-09-17 20:53:14 +02:00
void
2010-07-02 07:49:05 +02:00
match(void) {
unsigned int len;
2008-03-22 15:52:00 +01:00
Item *i, *itemend, *lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
2007-09-17 20:53:14 +02:00
2010-07-02 07:49:05 +02:00
len = strlen(text);
2008-03-22 15:52:00 +01:00
item = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
for(i = allitems; i; i = i->next)
2010-07-02 07:49:05 +02:00
if(!fstrncmp(text, i->text, len + 1))
2008-03-22 15:52:00 +01:00
appenditem(i, &lexact, &exactend);
2010-07-02 07:49:05 +02:00
else if(!fstrncmp(text, i->text, len))
2008-03-22 15:52:00 +01:00
appenditem(i, &lprefix, &prefixend);
2010-07-02 07:49:05 +02:00
else if(fstrstr(i->text, text))
2008-03-22 15:52:00 +01:00
appenditem(i, &lsubstr, &substrend);
if(lexact) {
item = lexact;
itemend = exactend;
}
if(lprefix) {
if(itemend) {
2008-03-24 16:56:41 +01:00
itemend->right = lprefix;
2008-03-22 15:52:00 +01:00
lprefix->left = itemend;
}
else
item = lprefix;
itemend = prefixend;
}
if(lsubstr) {
if(itemend) {
itemend->right = lsubstr;
lsubstr->left = itemend;
}
else
item = lsubstr;
}
2007-09-17 20:53:14 +02:00
curr = prev = next = sel = item;
calcoffsets();
}
void
readstdin(void) {
2010-04-01 22:31:09 +02:00
char *p, buf[sizeof text];
unsigned int len = 0, max = 0;
2006-08-04 09:35:27 +02:00
Item *i, *new;
2010-04-01 22:31:09 +02:00
i = NULL;
2006-11-26 15:49:33 +01:00
while(fgets(buf, sizeof buf, stdin)) {
2010-04-01 22:31:09 +02:00
len = strlen(buf);
if(buf[len-1] == '\n')
buf[--len] = '\0';
if(!(p = strdup(buf)))
eprint("cannot strdup %u bytes\n", len);
2010-06-16 16:36:17 +02:00
if((max = MAX(max, len)) == len)
2006-08-04 09:35:27 +02:00
maxname = p;
2010-06-11 10:24:33 +02:00
if(!(new = malloc(sizeof *new)))
eprint("cannot malloc %u bytes\n", sizeof *new);
2006-08-04 09:35:27 +02:00
new->next = new->left = new->right = NULL;
new->text = p;
if(!i)
2006-08-04 10:23:36 +02:00
allitems = new;
2006-08-04 09:35:27 +02:00
else
i->next = new;
i = new;
}
}
void
run(void) {
XEvent ev;
XSync(dpy, False);
while(!XNextEvent(dpy, &ev))
switch(ev.type) {
case Expose:
if(ev.xexpose.count == 0)
drawmenu();
break;
case KeyPress:
keypress(&ev.xkey);
break;
case VisibilityNotify:
if(ev.xvisibility.state != VisibilityUnobscured)
XRaiseWindow(dpy, win);
break;
}
exit(EXIT_FAILURE);
}
void
setup(void) {
int i, j, x, y;
#if XINERAMA
int n;
XineramaScreenInfo *info = NULL;
#endif
XModifierKeymap *modmap;
XSetWindowAttributes wa;
/* init modifier map */
modmap = XGetModifierMapping(dpy);
for(i = 0; i < 8; i++)
for(j = 0; j < modmap->max_keypermod; j++) {
if(modmap->modifiermap[i * modmap->max_keypermod + j]
== XKeysymToKeycode(dpy, XK_Num_Lock))
numlockmask = (1 << i);
}
XFreeModifiermap(modmap);
dc.dpy = dpy;
normcol[ColBG] = getcolor(&dc, normbgcolor);
normcol[ColFG] = getcolor(&dc, normfgcolor);
selcol[ColBG] = getcolor(&dc, selbgcolor);
selcol[ColFG] = getcolor(&dc, selfgcolor);
initfont(&dc, font);
/* input window */
wa.override_redirect = True;
wa.background_pixmap = ParentRelative;
wa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
/* input window geometry */
mh = (dc.font.height + 2) * (lines + 1);
#if XINERAMA
if(XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) {
i = 0;
if(n > 1) {
int di;
unsigned int dui;
Window dummy;
if(XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui))
for(i = 0; i < n; i++)
if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
break;
}
x = info[i].x_org;
y = topbar ? info[i].y_org : info[i].y_org + info[i].height - mh;
mw = info[i].width;
XFree(info);
}
else
#endif
{
x = 0;
y = topbar ? 0 : DisplayHeight(dpy, screen) - mh;
mw = DisplayWidth(dpy, screen);
}
win = XCreateWindow(dpy, root, x, y, mw, mh, 0,
DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
setupdraw(&dc, win);
if(prompt)
promptw = MIN(textw(&dc, prompt), mw / 5);
XMapRaised(dpy, win);
}
2007-09-17 20:53:14 +02:00
int
main(int argc, char *argv[]) {
2008-07-16 19:18:38 +02:00
unsigned int i;
2007-09-17 20:53:14 +02:00
/* command line args */
progname = "dmenu";
2007-09-17 20:53:14 +02:00
for(i = 1; i < argc; i++)
2008-03-12 22:37:43 +01:00
if(!strcmp(argv[i], "-i")) {
fstrncmp = strncasecmp;
fstrstr = cistrstr;
2008-03-12 22:37:43 +01:00
}
else if(!strcmp(argv[i], "-b"))
topbar = False;
else if(!strcmp(argv[i], "-l")) {
2010-03-07 09:32:16 +01:00
if(++i < argc) lines = atoi(argv[i]);
2010-06-11 10:24:33 +02:00
if(lines > 0)
calcoffsets = calcoffsetsv;
}
2007-09-17 20:53:14 +02:00
else if(!strcmp(argv[i], "-fn")) {
if(++i < argc) font = argv[i];
}
else if(!strcmp(argv[i], "-nb")) {
if(++i < argc) normbgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-nf")) {
if(++i < argc) normfgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-p")) {
if(++i < argc) prompt = argv[i];
}
else if(!strcmp(argv[i], "-sb")) {
if(++i < argc) selbgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-sf")) {
if(++i < argc) selfgcolor = argv[i];
2006-08-04 09:35:27 +02:00
}
else if(!strcmp(argv[i], "-v")) {
printf("dmenu-"VERSION", © 2006-2010 dmenu engineers, see LICENSE for details\n");
exit(EXIT_SUCCESS);
}
else {
fputs("usage: dmenu [-i] [-b] [-l <lines>] [-fn <font>] [-nb <color>]\n"
2010-07-02 04:44:01 +02:00
" [-nf <color>] [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n", stderr);
exit(EXIT_FAILURE);
}
2008-08-25 10:38:19 +02:00
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
2010-06-11 10:24:33 +02:00
fprintf(stderr, "dmenu: warning: no locale support\n");
if(!(dpy = XOpenDisplay(NULL)))
eprint("cannot open display\n");
2010-07-02 04:44:01 +02:00
if(atexit(&cleanup) != 0)
eprint("cannot register cleanup\n");
2007-09-17 20:53:14 +02:00
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
if(!(argp = malloc(sizeof *argp * (argc+2))))
eprint("cannot malloc %u bytes\n", sizeof *argp * (argc+2));
memcpy(argp + 2, argv + 1, sizeof *argp * argc);
2006-08-04 09:35:27 +02:00
2010-04-01 22:31:09 +02:00
readstdin();
2010-07-02 04:44:01 +02:00
grabkeyboard();
setup();
2010-07-02 07:49:05 +02:00
if(maxname)
cmdw = MIN(textw(&dc, maxname), mw / 3);
match();
2007-09-17 20:53:14 +02:00
run();
2010-07-02 04:44:01 +02:00
return 0;
2006-08-04 09:35:27 +02:00
}