X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=event.c;h=05f4ac5b0df75de3049f875d213c6673eabf2aaf;hb=bcaf6a7a0f492c3fafc4baabd2dc06f5191417ee;hp=f8ad44c5900887822b19e91adc4558ef434c08f5;hpb=f95eed34b46dfe73f1511703e0a9301c9d8d1952;p=dwm.git diff --git a/event.c b/event.c index f8ad44c..05f4ac5 100644 --- a/event.c +++ b/event.c @@ -12,6 +12,14 @@ #define MouseMask (ButtonMask | PointerMotionMask) /* CUSTOMIZE */ + +typedef struct { + unsigned long mod; + KeySym keysym; + void (*func)(Arg *arg); + Arg arg; +} Key; + const char *browse[] = { "firefox", NULL }; const char *gimp[] = { "gimp", NULL }; const char *term[] = { @@ -20,7 +28,7 @@ const char *term[] = { }; const char *xlock[] = { "xlock", NULL }; -Key key[] = { +static Key key[] = { /* modifier key function arguments */ { ControlMask, XK_0, appendtag, { .i = Tscratch } }, { ControlMask, XK_1, appendtag, { .i = Tdev } },