aboutsummaryrefslogtreecommitdiffstats
path: root/applied/dwm-preventfocusshift-20240831-6.5.diff
blob: 78a24cb05e18dbcb788bf986f7b501a8364f8c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 554f5a8a2205a7c52280babf5685462d8991b038 Mon Sep 17 00:00:00 2001
From: Suleyman Farajli <suleyman@farajli.net>
Date: Sat, 31 Aug 2024 13:34:58 +0400
Subject: [PATCH] prevent focus shifting when a window is spawned in fullscreen

---
 dwm.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dwm.c b/dwm.c
index f1d86b2..31b5d07 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1080,6 +1080,8 @@ manage(Window w, XWindowAttributes *wa)
 		(unsigned char *) &(c->win), 1);
 	XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
 	setclientstate(c, NormalState);
+	if(selmon->sel && selmon->sel->isfullscreen && !c->isfloating)
+		setfullscreen(selmon->sel, 0);
 	if (c->mon == selmon)
 		unfocus(selmon->sel, 0);
 	c->mon->sel = c;
-- 
2.44.2