dwm

My fork of dwm.
git clone git://git.alex.balgavy.eu/dwm.git
Log | Files | Refs | README | LICENSE

commit d500484e6df128fbb070c2fa4d42e6911af6e778
parent 6f872bcd148d87d37856971c7d281c919e6fb9e9
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date:   Fri,  9 Feb 2024 20:59:26 +0100

Keybindings

Diffstat:
Mconfig.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/config.h b/config.h @@ -49,6 +49,7 @@ static const Rule rules[] = { { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, { "Brave-browser", "brave-browser", NULL, 1 << 8, 0, 0, 0, -1 }, { "Dragon-drag-and-drop", NULL, NULL, 0, 1, 0, 1, -1 }, + { "ripdrag", NULL, NULL, 0, 1, 0, 1, -1 }, { "Signal", "signal", "Signal", 1 << 7, 0, 0, 0, -1 }, { "thunderbird", NULL, NULL, 1 << 4, 0, 0, 0, -1 }, { "Mattermost", NULL, NULL, 1 << 5, 0, 0, 0, -1 }, @@ -199,6 +200,8 @@ static Button buttons[] = { /* click event mask button function argument */ { ClkLtSymbol, 0, Button1, setlayout, {0} }, { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, + { ClkLtSymbol, 0, Button4, focusstack, {.i = INC(-1) } }, + { ClkLtSymbol, 0, Button5, focusstack, {.i = INC(+1) } }, { ClkWinTitle, 0, Button2, zoom, {0} }, { ClkStatusText, 0, Button1, sigstatusbar, {.i = 1 } }, { ClkStatusText, 0, Button2, sigstatusbar, {.i = 2 } },