Merge pull request #36 from kiedtl/patch-1

add win_prev() function for focusing previous window
This commit is contained in:
dylan 2019-12-16 09:49:36 +00:00 committed by GitHub
commit 623f4d8bc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
sowm.c
View File

@ -42,6 +42,7 @@ static void win_center();
static void win_del(Window w);
static void win_fs();
static void win_kill();
static void win_prev();
static void win_next();
static void win_to_ws(const Arg arg);
static void ws_go(const Arg arg);
@ -204,6 +205,13 @@ void win_to_ws(const Arg arg) {
if (list) win_focus(list);
}
void win_prev() {
if (!cur) return;
XRaiseWindow(d, cur->prev->w);
win_focus(cur->prev);
}
void win_next() {
if (!cur) return;