sowm

An itsy bitsy floating window manager (220~ sloc!).
git clone git://mfeller.io/sowm.git
Log | Files | Refs | README | LICENSE

commit 3f6625619706aaf84393b5e4ea2cbb0d4fe764c6
parent 7fe47aefc193da8dd21a59fd1499be764dc46e82
Author: Dylan Araps <dylan.araps@gmail.com>
Date:   Sat, 19 Oct 2019 00:18:03 +0300

sowm: simpler alt tab

Diffstat:
Msowm.c | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/sowm.c b/sowm.c @@ -213,11 +213,8 @@ void win_next() { win_current(); for win if (c->w == cur) { - c = c->next ? c->next : list; - - win_focus(c->w); - XRaiseWindow(d, c->w); - return; + win_focus(c->next->w); + XRaiseWindow(d, c->next->w); } }