-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathdwm-desktop_icons-6.5.diff
59 lines (53 loc) · 2.1 KB
/
dwm-desktop_icons-6.5.diff
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
From e6b3d027d7d2ec52c39557110cef0af32a156d0d Mon Sep 17 00:00:00 2001
From: Bakkeby <[email protected]>
Date: Wed, 26 Jun 2024 09:50:22 +0200
Subject: [PATCH] desktop icons patch
New windows that has the _NET_WM_WINDOW_TYPE_DESKTOP window type
will not be managed by dwm.
Example programs that this applies to:
- pcmanfm --desktop
- nautilus -n (legacy)
- nemo-desktop
- caja --force-desktop --no-default-window
Note that these applications have a tendency of managing the
background wallpaper as well, the exception being nemo-desktop
where it appears to just be transparent if a compositor is used.
---
dwm.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/dwm.c b/dwm.c
index f1d86b2..47ef45e 100644
--- a/dwm.c
+++ b/dwm.c
@@ -62,6 +62,7 @@ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
enum { SchemeNorm, SchemeSel }; /* color schemes */
enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
+ NetWMWindowTypeDesktop,
NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
@@ -1037,6 +1038,14 @@ manage(Window w, XWindowAttributes *wa)
c = ecalloc(1, sizeof(Client));
c->win = w;
+
+ if (getatomprop(c, netatom[NetWMWindowType]) == netatom[NetWMWindowTypeDesktop]) {
+ XMapWindow(dpy, c->win);
+ XLowerWindow(dpy, c->win);
+ free(c);
+ return;
+ }
+
/* geometry */
c->x = c->oldx = wa->x;
c->y = c->oldy = wa->y;
@@ -1578,6 +1587,7 @@ setup(void)
netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
+ netatom[NetWMWindowTypeDesktop] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DESKTOP", False);
netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
/* init cursors */
cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
--
2.45.2