summaryrefslogtreecommitdiff
path: root/patches/dwm-focusmaster.diff
blob: d5dd30fe27949c42c2656c6dac956e8b6d4af531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Author: Jan Christoph Ebersbach <jceb@e-jc.de>
URL: no URL yet
Straight forward patch to focus the master window with a keybinding.

Index: dwm/focusmaster.c
===================================================================
--- /dev/null
+++ dwm/focusmaster.c
@@ -0,0 +1,4 @@
+static void
+focusmaster(const Arg *arg) {
+	focus(nexttiled(selmon->clients));
+}