20 lines
1.1 KiB
Plaintext
20 lines
1.1 KiB
Plaintext
|
--- dwm.c
|
||
|
+++ dwm.c
|
||
|
@@ -62,7 +62,7 @@ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
||
|
enum { SchemeNorm, SchemeSel }; /* color schemes */
|
||
|
enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
|
||
|
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
|
||
|
- NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
|
||
|
+ NetWMWindowTypeDialog, NetClientList, NetClientInfo, NetLast }; /* EWMH atoms */
|
||
|
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
|
||
|
enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
|
||
|
ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
|
||
|
@@ -1588,6 +1610,7 @@ setup(void)
|
||
|
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
|
||
|
netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
|
||
|
netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
|
||
|
+ netatom[NetClientInfo] = XInternAtom(dpy, "_NET_CLIENT_INFO", False);
|
||
|
/* init cursors */
|
||
|
cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
|
||
|
cursor[CurResize] = drw_cur_create(drw, XC_sizing);
|