renamed scratchpads: auto-unhide a minimised (icon state) scratchpad when toggled

This commit is contained in:
bakkeby 2023-10-02 09:51:34 +02:00
parent ddb2e833a4
commit dd1660b1ed

View File

@ -66,12 +66,13 @@ togglescratch(const Arg *arg)
if (c->scratchkey != ((char**)arg->v)[0][0]) if (c->scratchkey != ((char**)arg->v)[0][0])
continue; continue;
/* awesomebar / wintitleactions compatibility, unhide scratchpad if hidden #if BAR_WINTITLEACTIONS_PATCH
/* unhide scratchpad if hidden */
if (HIDDEN(c)) { if (HIDDEN(c)) {
XMapWindow(dpy, c->win); XMapWindow(dpy, c->win);
setclientstate(c, NormalState); setclientstate(c, NormalState);
} }
*/ #endif // BAR_WINTITLEACTIONS_PATCH
/* Record the first found scratchpad client for focus purposes, but prioritise the /* Record the first found scratchpad client for focus purposes, but prioritise the
scratchpad on the current monitor if one exists */ scratchpad on the current monitor if one exists */