From 2f0b477545f342c725e905bfc3cab839bab892b3 Mon Sep 17 00:00:00 2001 From: sheldonmlee Date: Wed, 7 Jul 2021 20:35:50 +0800 Subject: [PATCH] Added gaming mode. This disables dwm's handling of modifier combos, so you can use them in game without conflict. --- config.h | 17 +++++++++++++---- dwm.c | 46 ++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 53 insertions(+), 10 deletions(-) diff --git a/config.h b/config.h index a4cd967..01bee41 100644 --- a/config.h +++ b/config.h @@ -87,10 +87,13 @@ static const char *termcmd[] = { "alacritty", NULL }; static const char *browsercmd[] = { "firefox", NULL }; static const char *slockcmd[] = { "slock", NULL }; -void focusmaster(const Arg* arg) -{ - focus(NULL); -} +/* functions */ +void focusmaster(const Arg* arg); + +/* variables */ +static int gamingmodmask = MODKEY; /* mod keys to disable when gaming */ + +static Key togglegamingkey = { MODKEY|ControlMask, XK_g, togglegaming, {0} }; static Key keys[] = { /* modifier key function argument */ @@ -151,3 +154,9 @@ static Button buttons[] = { { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; +void +focusmaster(const Arg* arg) +{ + focus(NULL); +} + diff --git a/dwm.c b/dwm.c index 4cb0b88..c281d11 100644 --- a/dwm.c +++ b/dwm.c @@ -238,6 +238,8 @@ static void zoom(const Arg *arg); static void centeredmaster(Monitor *m); static void centeredfloatingmaster(Monitor *m); static void togglelayout(const Arg *arg); +static void togglegaming(const Arg *arg); +static int iskey(KeySym *keysym, XKeyEvent *ev, Key *key); /* variables */ static const char broken[] = "broken"; @@ -272,6 +274,7 @@ static Display *dpy; static Drw *drw; static Monitor *mons, *selmon; static Window root, wmcheckwin; +static int isgaming = 0; /* configuration, allows nested code to access above variables */ #include "config.h" @@ -960,11 +963,20 @@ grabkeys(void) KeyCode code; XUngrabKey(dpy, AnyKey, AnyModifier, root); + + /* register toggle gaming mode key */ + if ((code = XKeysymToKeycode(dpy, togglegamingkey.keysym))) + for (j = 0; j < LENGTH(modifiers); j++) + XGrabKey(dpy, code, togglegamingkey.mod | modifiers[j], root, + True, GrabModeAsync, GrabModeAsync); for (i = 0; i < LENGTH(keys); i++) - if ((code = XKeysymToKeycode(dpy, keys[i].keysym))) - for (j = 0; j < LENGTH(modifiers); j++) + if ((code = XKeysymToKeycode(dpy, keys[i].keysym))) { + /* ignore key with mods used in gaming */ + if (isgaming && CLEANMASK(keys[i].mod & gamingmodmask) > 0) continue; + for (j = 0; j < LENGTH(modifiers); j++) XGrabKey(dpy, code, keys[i].mod | modifiers[j], root, True, GrabModeAsync, GrabModeAsync); + } } } @@ -987,6 +999,14 @@ isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info) } #endif /* XINERAMA */ +int /* Own added function to to reuse match key. */ +iskey(KeySym *keysym, XKeyEvent *ev, Key *key) +{ + return (*keysym == key->keysym + && CLEANMASK(key->mod) == CLEANMASK(ev->state) + && key->func); +} + void keypress(XEvent *e) { @@ -996,11 +1016,18 @@ keypress(XEvent *e) ev = &e->xkey; keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0); - for (i = 0; i < LENGTH(keys); i++) - if (keysym == keys[i].keysym - && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state) - && keys[i].func) + + /* always check for gaming key */ + if (iskey(&keysym, ev. &togglegamingkey)) + togglegaming(&(togglegamingkey.arg)); + + for (i = 0; i < LENGTH(keys); i++) { + /* ignore with mods used in gaming */ + if (isgaming && CLEANMASK(ev->state & gamingmodmask)) + continue; + else if (iskey(&keysym, ev, &keys[i])) keys[i].func(&(keys[i].arg)); + } } void @@ -2276,3 +2303,10 @@ togglelayout(const Arg* arg) else setlayout(NULL); } +void /* toggle gaming mode */ +togglegaming(const Arg* arg) +{ + isgaming ^= 1; + grabkeys(); +} +