123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- From manual edit 20240622
- From: digit <Digit @ notabug.org>
- Date: Wed, 26 June 2024 21:40:57 +0100
- Subject: [PATCH] MoveScratch patch
- This plugin combines MoveStack and Scratchpad patches with reconfigurations.
- MoveStack allows you to move clients around in the stack and swap them
- with the master. It emulates the behavior off mod+shift+e and mod+shift+d
- in tabular boonad. movestack(+1) will swap the client with the current focus with
- the next client. movestack(-1) will swap the client with the current focus
- with the previous client.
- ---
- config.def.h | 7 +++
- movestack.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
- dwm.c | 33 +++++++++++++++++++++++++++++++++
- 3 files changed, 88 insertions(+)
- create mode 100644 movestack.c
- diff --git a/config.def.h b/config.def.h
- --- a/config.def.h
- +++ b/config.def.h
- @@ -4,14 +4,14 @@
- static const unsigned int borderpx = 1; /* border pixel of windows */
- static const unsigned int snap = 32; /* snap pixel */
- static const int showbar = 1; /* 0 means no bar */
- -static const int topbar = 1; /* 0 means bottom bar */
- -static const char *fonts[] = { "monospace:size=10" };
- -static const char dmenufont[] = "monospace:size=10";
- -static const char col_gray1[] = "#222222";
- -static const char col_gray2[] = "#444444";
- -static const char col_gray3[] = "#bbbbbb";
- -static const char col_gray4[] = "#eeeeee";
- -static const char col_cyan[] = "#005577";
- +static const int topbar = 0; /* 0 means bottom bar */
- +static const char *fonts[] = { "nztt:pixelsize=12" };
- +static const char dmenufont[] = "nztt:pixelsize=12";
- +static const char col_gray1[] = "#391300";
- +static const char col_gray2[] = "#5f4c00";
- +static const char col_gray3[] = "#857200";
- +static const char col_gray4[] = "#be9800";
- +static const char col_cyan[] = "#fbc200";
- static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- @@ -27,7 +27,7 @@
- * WM_NAME(STRING) = title
- */
- /* class instance title tags mask isfloating monitor */
- - { "Gimp", NULL, NULL, 0, 1, -1 },
- + { "Gimp", NULL, NULL, 0, 0, -1 },
- { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
- };
-
- @@ -57,30 +57,36 @@
-
- /* commands */
- static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
- -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
- +static const char *dmenucmd[] = { "dmenu_run", "-b", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
- +static const char scratchpadname[] = "scratchpad";
- +static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
- static const char *termcmd[] = { "st", NULL };
-
- +#include "movestack.c"
- static const Key keys[] = {
- /* modifier key function argument */
- - { MODKEY, XK_p, spawn, {.v = dmenucmd } },
- - { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
- + { MODKEY, XK_grave, togglescratch, {.v = scratchpadcmd } },
- + { MODKEY|ShiftMask, XK_e, movestack, {.i = +1 } },
- + { MODKEY|ShiftMask, XK_d, movestack, {.i = -1 } },
- + { MODKEY, XK_r, spawn, {.v = dmenucmd } },
- + { MODKEY, XK_Return, spawn, {.v = termcmd } },
- { MODKEY, XK_b, togglebar, {0} },
- - { MODKEY, XK_j, focusstack, {.i = +1 } },
- - { MODKEY, XK_k, focusstack, {.i = -1 } },
- - { MODKEY, XK_i, incnmaster, {.i = +1 } },
- - { MODKEY, XK_d, incnmaster, {.i = -1 } },
- - { MODKEY, XK_h, setmfact, {.f = -0.05} },
- - { MODKEY, XK_l, setmfact, {.f = +0.05} },
- - { MODKEY, XK_Return, zoom, {0} },
- + { MODKEY, XK_e, focusstack, {.i = +1 } },
- + { MODKEY, XK_d, focusstack, {.i = -1 } },
- + { MODKEY, XK_a, incnmaster, {.i = +1 } },
- + { MODKEY, XK_z, incnmaster, {.i = -1 } },
- + { MODKEY, XK_s, setmfact, {.f = -0.05} },
- + { MODKEY, XK_f, setmfact, {.f = +0.05} },
- + { MODKEY|ShiftMask, XK_Return, zoom, {0} },
- { MODKEY, XK_Tab, view, {0} },
- - { MODKEY|ShiftMask, XK_c, killclient, {0} },
- + { MODKEY|ShiftMask, XK_F4, killclient, {0} },
- { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
- - { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
- - { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
- + { MODKEY, XK_g, setlayout, {.v = &layouts[1]} },
- + { MODKEY, XK_v, setlayout, {.v = &layouts[2]} },
- { MODKEY, XK_space, setlayout, {0} },
- - { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
- - { MODKEY, XK_0, view, {.ui = ~0 } },
- - { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
- + { MODKEY|ShiftMask, XK_t, togglefloating, {0} },
- + { MODKEY, XK_c, view, {.ui = ~0 } },
- + { MODKEY|ShiftMask, XK_c, tag, {.ui = ~0 } },
- { MODKEY, XK_comma, focusmon, {.i = -1 } },
- { MODKEY, XK_period, focusmon, {.i = +1 } },
- { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
- diff --git a/dwm.c b/dwm.c
- index f1d86b2..a8db21a 100644
- --- a/dwm.c
- +++ b/dwm.c
- @@ -211,6 +211,7 @@ static void tagmon(const Arg *arg);
- static void tile(Monitor *m);
- static void togglebar(const Arg *arg);
- static void togglefloating(const Arg *arg);
- +static void togglescratch(const Arg *arg);
- static void toggletag(const Arg *arg);
- static void toggleview(const Arg *arg);
- static void unfocus(Client *c, int setfocus);
- @@ -271,6 +272,8 @@ static Window root, wmcheckwin;
- /* configuration, allows nested code to access above variables */
- #include "config.h"
-
- +static unsigned int scratchtag = 1 << LENGTH(tags);
- +
- /* compile-time check if all tags fit into an unsigned int bit array. */
- struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
-
- @@ -1061,6 +1064,14 @@ manage(Window w, XWindowAttributes *wa)
- c->y = MAX(c->y, c->mon->wy);
- c->bw = borderpx;
-
- + selmon->tagset[selmon->seltags] &= ~scratchtag;
- + if (!strcmp(c->name, scratchpadname)) {
- + c->mon->tagset[c->mon->seltags] |= c->tags = scratchtag;
- + c->isfloating = True;
- + c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2);
- + c->y = c->mon->wy + (c->mon->wh / 2 - HEIGHT(c) / 2);
- + }
- +
- wc.border_width = c->bw;
- XConfigureWindow(dpy, w, CWBorderWidth, &wc);
- XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
- @@ -1651,6 +1662,7 @@ spawn(const Arg *arg)
-
- if (arg->v == dmenucmd)
- dmenumon[0] = '0' + selmon->num;
- + selmon->tagset[selmon->seltags] &= ~scratchtag;
- if (fork() == 0) {
- if (dpy)
- close(ConnectionNumber(dpy));
- @@ -1735,6 +1747,28 @@ togglefloating(const Arg *arg)
- arrange(selmon);
- }
-
- +void
- +togglescratch(const Arg *arg)
- +{
- + Client *c;
- + unsigned int found = 0;
- +
- + for (c = selmon->clients; c && !(found = c->tags & scratchtag); c = c->next);
- + if (found) {
- + unsigned int newtagset = selmon->tagset[selmon->seltags] ^ scratchtag;
- + if (newtagset) {
- + selmon->tagset[selmon->seltags] = newtagset;
- + focus(NULL);
- + arrange(selmon);
- + }
- + if (ISVISIBLE(c)) {
- + focus(c);
- + restack(selmon);
- + }
- + } else
- + spawn(arg);
- +}
- +
- void
- toggletag(const Arg *arg)
- {
- diff --git a/movestack.c b/movestack.c
- new file mode 100644
- index 0000000..520f4ae
- --- /dev/null
- +++ b/movestack.c
- @@ -0,0 +1,48 @@
- +void
- +movestack(const Arg *arg) {
- + Client *c = NULL, *p = NULL, *pc = NULL, *i;
- +
- + if(arg->i > 0) {
- + /* find the client after selmon->sel */
- + for(c = selmon->sel->next; c && (!ISVISIBLE(c) || c->isfloating); c = c->next);
- + if(!c)
- + for(c = selmon->clients; c && (!ISVISIBLE(c) || c->isfloating); c = c->next);
- +
- + }
- + else {
- + /* find the client before selmon->sel */
- + for(i = selmon->clients; i != selmon->sel; i = i->next)
- + if(ISVISIBLE(i) && !i->isfloating)
- + c = i;
- + if(!c)
- + for(; i; i = i->next)
- + if(ISVISIBLE(i) && !i->isfloating)
- + c = i;
- + }
- + /* find the client before selmon->sel and c */
- + for(i = selmon->clients; i && (!p || !pc); i = i->next) {
- + if(i->next == selmon->sel)
- + p = i;
- + if(i->next == c)
- + pc = i;
- + }
- +
- + /* swap c and selmon->sel selmon->clients in the selmon->clients list */
- + if(c && c != selmon->sel) {
- + Client *temp = selmon->sel->next==c?selmon->sel:selmon->sel->next;
- + selmon->sel->next = c->next==selmon->sel?c:c->next;
- + c->next = temp;
- +
- + if(p && p != c)
- + p->next = c;
- + if(pc && pc != selmon->sel)
- + pc->next = selmon->sel;
- +
- + if(selmon->sel == selmon->clients)
- + selmon->clients = c;
- + else if(c == selmon->clients)
- + selmon->clients = selmon->sel;
- +
- + arrange(selmon);
- + }
- +}
|