2020-09-07 11:01:41 +00:00
|
|
|
From dd88b0115deb4c9f42fc392e68ac8e72b5ed6877 Mon Sep 17 00:00:00 2001
|
2020-07-20 13:58:35 +00:00
|
|
|
From: bakkeby <bakkeby@gmail.com>
|
|
|
|
Date: Mon, 20 Jul 2020 11:19:12 +0200
|
|
|
|
Subject: [PATCH 2/2] Adding systray module
|
|
|
|
|
|
|
|
---
|
|
|
|
config.def.h | 3 +
|
2020-08-10 08:46:02 +00:00
|
|
|
dwm.c | 130 ++++++++++++++++++++++++++----
|
2020-07-20 13:58:35 +00:00
|
|
|
patch/bar_systray.c | 187 ++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
patch/bar_systray.h | 40 ++++++++++
|
|
|
|
patch/include.c | 3 +-
|
|
|
|
patch/include.h | 3 +-
|
2020-08-10 08:46:02 +00:00
|
|
|
6 files changed, 349 insertions(+), 17 deletions(-)
|
2020-07-20 13:58:35 +00:00
|
|
|
create mode 100644 patch/bar_systray.c
|
|
|
|
create mode 100644 patch/bar_systray.h
|
|
|
|
|
|
|
|
diff --git a/config.def.h b/config.def.h
|
|
|
|
index 2534eac..d17b65c 100644
|
|
|
|
--- a/config.def.h
|
|
|
|
+++ b/config.def.h
|
|
|
|
@@ -5,6 +5,8 @@ static const unsigned int borderpx = 1; /* border pixel of windows */
|
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
|
|
|
+static const unsigned int systrayspacing = 2; /* systray spacing */
|
|
|
|
+static const int showsystray = 1; /* 0 means no systray */
|
|
|
|
static const char *fonts[] = { "monospace:size=10" };
|
|
|
|
static const char dmenufont[] = "monospace:size=10";
|
|
|
|
static const char col_gray1[] = "#222222";
|
|
|
|
@@ -47,6 +49,7 @@ static const BarRule barrules[] = {
|
|
|
|
/* monitor bar alignment widthfunc drawfunc clickfunc name */
|
|
|
|
{ -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, "tags" },
|
|
|
|
{ -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" },
|
|
|
|
+ { 'A', 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" },
|
|
|
|
{ 'A', 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_status, "status" },
|
|
|
|
{ -1, 0, BAR_ALIGN_NONE, width_wintitle, draw_wintitle, click_wintitle, "wintitle" },
|
|
|
|
};
|
|
|
|
diff --git a/dwm.c b/dwm.c
|
2020-09-07 11:01:41 +00:00
|
|
|
index 03dccfb..ca79f5f 100644
|
2020-07-20 13:58:35 +00:00
|
|
|
--- a/dwm.c
|
|
|
|
+++ b/dwm.c
|
|
|
|
@@ -63,6 +63,8 @@ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
|
|
|
enum { SchemeNorm, SchemeSel }; /* color schemes */
|
|
|
|
enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
|
|
|
|
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
|
|
|
|
+ NetSystemTray, NetSystemTrayOP, NetSystemTrayOrientation,
|
|
|
|
+ NetSystemTrayVisual, NetWMWindowTypeDock, NetSystemTrayOrientationHorz,
|
|
|
|
NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
|
|
|
|
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
|
|
|
|
enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
|
|
|
|
@@ -246,7 +248,7 @@ static void resizemouse(const Arg *arg);
|
|
|
|
static void restack(Monitor *m);
|
|
|
|
static void run(void);
|
|
|
|
static void scan(void);
|
|
|
|
-static int sendevent(Client *c, Atom proto);
|
|
|
|
+static int sendevent(Window w, Atom proto, int m, long d0, long d1, long d2, long d3, long d4);
|
|
|
|
static void sendmon(Client *c, Monitor *m);
|
|
|
|
static void setclientstate(Client *c, long state);
|
|
|
|
static void setfocus(Client *c);
|
|
|
|
@@ -310,9 +312,10 @@ static void (*handler[LASTEvent]) (XEvent *) = {
|
|
|
|
[MapRequest] = maprequest,
|
|
|
|
[MotionNotify] = motionnotify,
|
|
|
|
[PropertyNotify] = propertynotify,
|
|
|
|
+ [ResizeRequest] = resizerequest,
|
|
|
|
[UnmapNotify] = unmapnotify
|
|
|
|
};
|
|
|
|
-static Atom wmatom[WMLast], netatom[NetLast];
|
|
|
|
+static Atom wmatom[WMLast], netatom[NetLast], xatom[XLast];
|
|
|
|
static int running = 1;
|
|
|
|
static Cur *cursor[CurLast];
|
|
|
|
static Clr **scheme;
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -555,6 +558,13 @@ cleanup(void)
|
2020-07-20 13:58:35 +00:00
|
|
|
XUngrabKey(dpy, AnyKey, AnyModifier, root);
|
|
|
|
while (mons)
|
|
|
|
cleanupmon(mons);
|
2020-08-10 08:46:02 +00:00
|
|
|
+ if (showsystray && systray) {
|
|
|
|
+ if (systray->win) {
|
|
|
|
+ XUnmapWindow(dpy, systray->win);
|
|
|
|
+ XDestroyWindow(dpy, systray->win);
|
|
|
|
+ }
|
2020-07-20 13:58:35 +00:00
|
|
|
+ free(systray);
|
|
|
|
+ }
|
|
|
|
for (i = 0; i < CurLast; i++)
|
|
|
|
drw_cur_free(drw, cursor[i]);
|
|
|
|
for (i = 0; i < LENGTH(colors); i++)
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -590,9 +600,48 @@ cleanupmon(Monitor *mon)
|
2020-07-20 13:58:35 +00:00
|
|
|
void
|
|
|
|
clientmessage(XEvent *e)
|
|
|
|
{
|
|
|
|
+ XWindowAttributes wa;
|
|
|
|
+ XSetWindowAttributes swa;
|
|
|
|
XClientMessageEvent *cme = &e->xclient;
|
|
|
|
Client *c = wintoclient(cme->window);
|
|
|
|
|
2020-09-07 10:10:04 +00:00
|
|
|
+ if (showsystray && systray && cme->window == systray->win && cme->message_type == netatom[NetSystemTrayOP]) {
|
2020-07-20 13:58:35 +00:00
|
|
|
+ /* add systray icons */
|
|
|
|
+ if (cme->data.l[1] == SYSTEM_TRAY_REQUEST_DOCK) {
|
|
|
|
+ if (!(c = (Client *)calloc(1, sizeof(Client))))
|
|
|
|
+ die("fatal: could not malloc() %u bytes\n", sizeof(Client));
|
|
|
|
+ if (!(c->win = cme->data.l[2])) {
|
|
|
|
+ free(c);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ c->mon = selmon;
|
|
|
|
+ c->next = systray->icons;
|
|
|
|
+ systray->icons = c;
|
|
|
|
+ XGetWindowAttributes(dpy, c->win, &wa);
|
|
|
|
+ c->x = c->oldx = c->y = c->oldy = 0;
|
|
|
|
+ c->w = c->oldw = wa.width;
|
|
|
|
+ c->h = c->oldh = wa.height;
|
|
|
|
+ c->oldbw = wa.border_width;
|
|
|
|
+ c->bw = 0;
|
|
|
|
+ c->isfloating = True;
|
|
|
|
+ /* reuse tags field as mapped status */
|
|
|
|
+ c->tags = 1;
|
|
|
|
+ updatesizehints(c);
|
|
|
|
+ updatesystrayicongeom(c, wa.width, wa.height);
|
|
|
|
+ XAddToSaveSet(dpy, c->win);
|
|
|
|
+ XSelectInput(dpy, c->win, StructureNotifyMask | PropertyChangeMask | ResizeRedirectMask);
|
|
|
|
+ XReparentWindow(dpy, c->win, systray->win, 0, 0);
|
|
|
|
+ /* use parents background color */
|
|
|
|
+ swa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
|
|
|
|
+ XChangeWindowAttributes(dpy, c->win, CWBackPixel, &swa);
|
|
|
|
+ sendevent(c->win, netatom[Xembed], StructureNotifyMask, CurrentTime, XEMBED_EMBEDDED_NOTIFY, 0 , systray->win, XEMBED_EMBEDDED_VERSION);
|
|
|
|
+ XSync(dpy, False);
|
|
|
|
+ setclientstate(c, NormalState);
|
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (!c)
|
|
|
|
return;
|
|
|
|
if (cme->message_type == netatom[NetWMState]) {
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -755,6 +804,10 @@ destroynotify(XEvent *e)
|
2020-07-20 13:58:35 +00:00
|
|
|
|
|
|
|
if ((c = wintoclient(ev->window)))
|
|
|
|
unmanage(c, 1);
|
|
|
|
+ else if (showsystray && (c = wintosystrayicon(ev->window))) {
|
|
|
|
+ removesystrayicon(c);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1021,9 +1074,15 @@ getatomprop(Client *c, Atom prop)
|
2020-07-20 13:58:35 +00:00
|
|
|
unsigned char *p = NULL;
|
|
|
|
Atom da, atom = None;
|
|
|
|
|
|
|
|
- if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
|
|
|
|
+ Atom req = XA_ATOM;
|
|
|
|
+ if (prop == xatom[XembedInfo])
|
|
|
|
+ req = xatom[XembedInfo];
|
|
|
|
+
|
|
|
|
+ if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, req,
|
|
|
|
&da, &di, &dl, &dl, &p) == Success && p) {
|
|
|
|
atom = *(Atom *)p;
|
|
|
|
+ if (da == xatom[XembedInfo] && dl == 2)
|
|
|
|
+ atom = ((Atom *)p)[1];
|
|
|
|
XFree(p);
|
|
|
|
}
|
|
|
|
return atom;
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1161,7 +1220,7 @@ killclient(const Arg *arg)
|
2020-07-20 13:58:35 +00:00
|
|
|
{
|
|
|
|
if (!selmon->sel)
|
|
|
|
return;
|
|
|
|
- if (!sendevent(selmon->sel, wmatom[WMDelete])) {
|
|
|
|
+ if (!sendevent(selmon->sel->win, wmatom[WMDelete], NoEventMask, wmatom[WMDelete], CurrentTime, 0, 0, 0)) {
|
|
|
|
XGrabServer(dpy);
|
|
|
|
XSetErrorHandler(xerrordummy);
|
|
|
|
XSetCloseDownMode(dpy, DestroyAll);
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1247,9 +1306,15 @@ mappingnotify(XEvent *e)
|
2020-07-20 13:58:35 +00:00
|
|
|
void
|
|
|
|
maprequest(XEvent *e)
|
|
|
|
{
|
|
|
|
+ Client *i;
|
|
|
|
static XWindowAttributes wa;
|
|
|
|
XMapRequestEvent *ev = &e->xmaprequest;
|
|
|
|
|
2020-09-07 11:01:41 +00:00
|
|
|
+ if (showsystray && systray && (i = wintosystrayicon(ev->window))) {
|
2020-07-20 13:58:35 +00:00
|
|
|
+ sendevent(i->win, netatom[Xembed], StructureNotifyMask, CurrentTime, XEMBED_WINDOW_ACTIVATE, 0, systray->win, XEMBED_EMBEDDED_VERSION);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (!XGetWindowAttributes(dpy, ev->window, &wa))
|
|
|
|
return;
|
|
|
|
if (wa.override_redirect)
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1373,6 +1438,16 @@ propertynotify(XEvent *e)
|
2020-07-20 13:58:35 +00:00
|
|
|
Window trans;
|
|
|
|
XPropertyEvent *ev = &e->xproperty;
|
|
|
|
|
|
|
|
+ if (showsystray && (c = wintosystrayicon(ev->window))) {
|
|
|
|
+ if (ev->atom == XA_WM_NORMAL_HINTS) {
|
|
|
|
+ updatesizehints(c);
|
|
|
|
+ updatesystrayicongeom(c, c->w, c->h);
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ updatesystrayiconstate(c, ev);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if ((ev->window == root) && (ev->atom == XA_WM_NAME))
|
|
|
|
updatestatus();
|
|
|
|
else if (ev->state == PropertyDelete)
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1592,26 +1667,36 @@ setclientstate(Client *c, long state)
|
2020-07-20 13:58:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
-sendevent(Client *c, Atom proto)
|
|
|
|
+sendevent(Window w, Atom proto, int mask, long d0, long d1, long d2, long d3, long d4)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
Atom *protocols;
|
|
|
|
+ Atom mt;
|
|
|
|
int exists = 0;
|
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
- if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
|
|
|
|
- while (!exists && n--)
|
|
|
|
- exists = protocols[n] == proto;
|
|
|
|
- XFree(protocols);
|
|
|
|
+ if (proto == wmatom[WMTakeFocus] || proto == wmatom[WMDelete]) {
|
|
|
|
+ mt = wmatom[WMProtocols];
|
|
|
|
+ if (XGetWMProtocols(dpy, w, &protocols, &n)) {
|
|
|
|
+ while (!exists && n--)
|
|
|
|
+ exists = protocols[n] == proto;
|
|
|
|
+ XFree(protocols);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ exists = True;
|
|
|
|
+ mt = proto;
|
|
|
|
}
|
|
|
|
if (exists) {
|
|
|
|
ev.type = ClientMessage;
|
|
|
|
- ev.xclient.window = c->win;
|
|
|
|
- ev.xclient.message_type = wmatom[WMProtocols];
|
|
|
|
+ ev.xclient.window = w;
|
|
|
|
+ ev.xclient.message_type = mt;
|
|
|
|
ev.xclient.format = 32;
|
|
|
|
- ev.xclient.data.l[0] = proto;
|
|
|
|
- ev.xclient.data.l[1] = CurrentTime;
|
|
|
|
- XSendEvent(dpy, c->win, False, NoEventMask, &ev);
|
|
|
|
+ ev.xclient.data.l[0] = d0;
|
|
|
|
+ ev.xclient.data.l[1] = d1;
|
|
|
|
+ ev.xclient.data.l[2] = d2;
|
|
|
|
+ ev.xclient.data.l[3] = d3;
|
|
|
|
+ ev.xclient.data.l[4] = d4;
|
|
|
|
+ XSendEvent(dpy, w, False, mask, &ev);
|
|
|
|
}
|
|
|
|
return exists;
|
|
|
|
}
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1625,7 +1710,7 @@ setfocus(Client *c)
|
2020-07-20 13:58:35 +00:00
|
|
|
XA_WINDOW, 32, PropModeReplace,
|
|
|
|
(unsigned char *) &(c->win), 1);
|
|
|
|
}
|
|
|
|
- sendevent(c, wmatom[WMTakeFocus]);
|
|
|
|
+ sendevent(c->win, wmatom[WMTakeFocus], NoEventMask, wmatom[WMTakeFocus], CurrentTime, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1714,6 +1799,15 @@ setup(void)
|
2020-07-20 13:58:35 +00:00
|
|
|
wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
|
|
|
|
netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
|
|
|
|
netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
|
|
|
|
+ netatom[NetSystemTray] = XInternAtom(dpy, "_NET_SYSTEM_TRAY_S0", False);
|
|
|
|
+ netatom[NetSystemTrayOP] = XInternAtom(dpy, "_NET_SYSTEM_TRAY_OPCODE", False);
|
|
|
|
+ netatom[NetSystemTrayOrientation] = XInternAtom(dpy, "_NET_SYSTEM_TRAY_ORIENTATION", False);
|
|
|
|
+ netatom[NetSystemTrayOrientationHorz] = XInternAtom(dpy, "_NET_SYSTEM_TRAY_ORIENTATION_HORZ", False);
|
|
|
|
+ netatom[NetSystemTrayVisual] = XInternAtom(dpy, "_NET_SYSTEM_TRAY_VISUAL", False);
|
|
|
|
+ netatom[NetWMWindowTypeDock] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DOCK", False);
|
|
|
|
+ xatom[Manager] = XInternAtom(dpy, "MANAGER", False);
|
|
|
|
+ xatom[Xembed] = XInternAtom(dpy, "_XEMBED", False);
|
|
|
|
+ xatom[XembedInfo] = XInternAtom(dpy, "_XEMBED_INFO", False);
|
|
|
|
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
|
|
|
|
netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
|
|
|
|
netatom[NetWMCheck] = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
|
2020-08-10 08:46:02 +00:00
|
|
|
@@ -1956,6 +2050,12 @@ unmapnotify(XEvent *e)
|
2020-07-20 13:58:35 +00:00
|
|
|
setclientstate(c, WithdrawnState);
|
|
|
|
else
|
|
|
|
unmanage(c, 0);
|
|
|
|
+ } else if (showsystray && (c = wintosystrayicon(ev->window))) {
|
|
|
|
+ /* KLUDGE! sometimes icons occasionally unmap their windows, but do
|
|
|
|
+ * _not_ destroy them. We map those windows back */
|
|
|
|
+ XMapRaised(dpy, c->win);
|
|
|
|
+ removesystrayicon(c);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/patch/bar_systray.c b/patch/bar_systray.c
|
|
|
|
new file mode 100644
|
2020-09-07 11:01:41 +00:00
|
|
|
index 0000000..b1efe88
|
2020-07-20 13:58:35 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/patch/bar_systray.c
|
|
|
|
@@ -0,0 +1,187 @@
|
|
|
|
+static Systray *systray = NULL;
|
|
|
|
+static unsigned long systrayorientation = _NET_SYSTEM_TRAY_ORIENTATION_HORZ;
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+width_systray(Bar *bar, BarWidthArg *a)
|
|
|
|
+{
|
|
|
|
+ unsigned int w = 0;
|
|
|
|
+ Client *i;
|
|
|
|
+ if (!systray)
|
|
|
|
+ return 1;
|
|
|
|
+ if (showsystray)
|
|
|
|
+ for (i = systray->icons; i; w += i->w + systrayspacing, i = i->next);
|
|
|
|
+ return w ? w + lrpad - systrayspacing : 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+draw_systray(Bar *bar, BarDrawArg *a)
|
|
|
|
+{
|
|
|
|
+ if (!showsystray)
|
|
|
|
+ return a->x;
|
|
|
|
+
|
|
|
|
+ XSetWindowAttributes wa;
|
|
|
|
+ Client *i;
|
|
|
|
+ unsigned int w;
|
|
|
|
+
|
|
|
|
+ if (!systray) {
|
|
|
|
+ /* init systray */
|
|
|
|
+ if (!(systray = (Systray *)calloc(1, sizeof(Systray))))
|
|
|
|
+ die("fatal: could not malloc() %u bytes\n", sizeof(Systray));
|
|
|
|
+
|
|
|
|
+ wa.override_redirect = True;
|
|
|
|
+ wa.event_mask = ButtonPressMask|ExposureMask;
|
|
|
|
+ wa.border_pixel = 0;
|
|
|
|
+ #if BAR_ALPHA_PATCH
|
|
|
|
+ wa.background_pixel = 0;
|
|
|
|
+ wa.colormap = cmap;
|
|
|
|
+ systray->win = XCreateWindow(dpy, root, bar->bx + a->x + lrpad / 2, bar->by, MAX(a->w + 40, 1), bar->bh, 0, depth,
|
|
|
|
+ InputOutput, visual,
|
|
|
|
+ CWOverrideRedirect|CWBorderPixel|CWBackPixel|CWColormap|CWEventMask, &wa); // CWBackPixmap
|
|
|
|
+ #else
|
|
|
|
+ wa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
|
|
|
|
+ systray->win = XCreateSimpleWindow(dpy, root, bar->bx + a->x + lrpad / 2, bar->by, MIN(a->w, 1), bar->bh, 0, 0, scheme[SchemeNorm][ColBg].pixel);
|
|
|
|
+ XChangeWindowAttributes(dpy, systray->win, CWOverrideRedirect|CWBackPixel|CWBorderPixel|CWEventMask, &wa);
|
|
|
|
+ #endif // BAR_ALPHA_PATCH
|
|
|
|
+
|
|
|
|
+ XSelectInput(dpy, systray->win, SubstructureNotifyMask);
|
|
|
|
+ XChangeProperty(dpy, systray->win, netatom[NetSystemTrayOrientation], XA_CARDINAL, 32,
|
|
|
|
+ PropModeReplace, (unsigned char *)&systrayorientation, 1);
|
|
|
|
+ #if BAR_ALPHA_PATCH
|
|
|
|
+ XChangeProperty(dpy, systray->win, netatom[NetSystemTrayVisual], XA_VISUALID, 32,
|
|
|
|
+ PropModeReplace, (unsigned char *)&visual->visualid, 1);
|
|
|
|
+ #endif // BAR_ALPHA_PATCH
|
|
|
|
+ XChangeProperty(dpy, systray->win, netatom[NetWMWindowType], XA_ATOM, 32,
|
|
|
|
+ PropModeReplace, (unsigned char *)&netatom[NetWMWindowTypeDock], 1);
|
|
|
|
+ XMapRaised(dpy, systray->win);
|
|
|
|
+ XSetSelectionOwner(dpy, netatom[NetSystemTray], systray->win, CurrentTime);
|
|
|
|
+ if (XGetSelectionOwner(dpy, netatom[NetSystemTray]) == systray->win) {
|
|
|
|
+ sendevent(root, xatom[Manager], StructureNotifyMask, CurrentTime, netatom[NetSystemTray], systray->win, 0, 0);
|
|
|
|
+ XSync(dpy, False);
|
|
|
|
+ } else {
|
|
|
|
+ fprintf(stderr, "dwm: unable to obtain system tray.\n");
|
|
|
|
+ free(systray);
|
|
|
|
+ systray = NULL;
|
|
|
|
+ return a->x;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ systray->bar = bar;
|
|
|
|
+
|
|
|
|
+ drw_setscheme(drw, scheme[SchemeNorm]);
|
|
|
|
+ for (w = 0, i = systray->icons; i; i = i->next) {
|
|
|
|
+ #if BAR_ALPHA_PATCH
|
|
|
|
+ wa.background_pixel = 0;
|
|
|
|
+ #else
|
|
|
|
+ wa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
|
|
|
|
+ #endif // BAR_ALPHA_PATCH
|
|
|
|
+ XChangeWindowAttributes(dpy, i->win, CWBackPixel, &wa);
|
|
|
|
+ XMapRaised(dpy, i->win);
|
|
|
|
+ i->x = w;
|
|
|
|
+ XMoveResizeWindow(dpy, i->win, i->x, 0, i->w, i->h);
|
|
|
|
+ w += i->w;
|
|
|
|
+ if (i->next)
|
|
|
|
+ w += systrayspacing;
|
|
|
|
+ if (i->mon != bar->mon)
|
|
|
|
+ i->mon = bar->mon;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ XMoveResizeWindow(dpy, systray->win, bar->bx + a->x + lrpad / 2, (w ? bar->by : -bar->by), MAX(w, 1), bar->bh);
|
|
|
|
+ return a->x + a->w;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+click_systray(Bar *bar, Arg *arg, BarClickArg *a)
|
|
|
|
+{
|
|
|
|
+ return -1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void
|
|
|
|
+removesystrayicon(Client *i)
|
|
|
|
+{
|
|
|
|
+ Client **ii;
|
|
|
|
+
|
|
|
|
+ if (!showsystray || !i)
|
|
|
|
+ return;
|
|
|
|
+ for (ii = &systray->icons; *ii && *ii != i; ii = &(*ii)->next);
|
|
|
|
+ if (ii)
|
|
|
|
+ *ii = i->next;
|
|
|
|
+ free(i);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void
|
|
|
|
+resizerequest(XEvent *e)
|
|
|
|
+{
|
|
|
|
+ XResizeRequestEvent *ev = &e->xresizerequest;
|
|
|
|
+ Client *i;
|
|
|
|
+
|
|
|
|
+ if ((i = wintosystrayicon(ev->window))) {
|
|
|
|
+ updatesystrayicongeom(i, ev->width, ev->height);
|
|
|
|
+ drawbarwin(systray->bar);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void
|
|
|
|
+updatesystrayicongeom(Client *i, int w, int h)
|
|
|
|
+{
|
|
|
|
+ if (i) {
|
|
|
|
+ i->h = bh;
|
|
|
|
+ if (w == h)
|
|
|
|
+ i->w = bh;
|
|
|
|
+ else if (h == bh)
|
|
|
|
+ i->w = w;
|
|
|
|
+ else
|
|
|
|
+ i->w = (int) ((float)bh * ((float)w / (float)h));
|
|
|
|
+ applysizehints(i, &(i->x), &(i->y), &(i->w), &(i->h), False);
|
|
|
|
+ /* force icons into the systray dimensions if they don't want to */
|
|
|
|
+ if (i->h > bh) {
|
|
|
|
+ if (i->w == i->h)
|
|
|
|
+ i->w = bh;
|
|
|
|
+ else
|
|
|
|
+ i->w = (int) ((float)bh * ((float)i->w / (float)i->h));
|
|
|
|
+ i->h = bh;
|
|
|
|
+ }
|
|
|
|
+ if (i->w > 2*bh)
|
|
|
|
+ i->w = bh;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void
|
|
|
|
+updatesystrayiconstate(Client *i, XPropertyEvent *ev)
|
|
|
|
+{
|
|
|
|
+ long flags;
|
|
|
|
+ int code = 0;
|
|
|
|
+
|
2020-09-07 11:01:41 +00:00
|
|
|
+ if (!showsystray || !systray || !i || ev->atom != xatom[XembedInfo] ||
|
2020-07-20 13:58:35 +00:00
|
|
|
+ !(flags = getatomprop(i, xatom[XembedInfo])))
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ if (flags & XEMBED_MAPPED && !i->tags) {
|
|
|
|
+ i->tags = 1;
|
|
|
|
+ code = XEMBED_WINDOW_ACTIVATE;
|
|
|
|
+ XMapRaised(dpy, i->win);
|
|
|
|
+ setclientstate(i, NormalState);
|
|
|
|
+ }
|
|
|
|
+ else if (!(flags & XEMBED_MAPPED) && i->tags) {
|
|
|
|
+ i->tags = 0;
|
|
|
|
+ code = XEMBED_WINDOW_DEACTIVATE;
|
|
|
|
+ XUnmapWindow(dpy, i->win);
|
|
|
|
+ setclientstate(i, WithdrawnState);
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ return;
|
|
|
|
+ sendevent(i->win, xatom[Xembed], StructureNotifyMask, CurrentTime, code, 0,
|
|
|
|
+ systray->win, XEMBED_EMBEDDED_VERSION);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+Client *
|
|
|
|
+wintosystrayicon(Window w)
|
|
|
|
+{
|
|
|
|
+ if (!systray)
|
|
|
|
+ return NULL;
|
|
|
|
+ Client *i = NULL;
|
|
|
|
+ if (!showsystray || !w)
|
|
|
|
+ return i;
|
|
|
|
+ for (i = systray->icons; i && i->win != w; i = i->next);
|
|
|
|
+ return i;
|
|
|
|
+}
|
|
|
|
diff --git a/patch/bar_systray.h b/patch/bar_systray.h
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000..5123a73
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/patch/bar_systray.h
|
|
|
|
@@ -0,0 +1,40 @@
|
|
|
|
+#define SYSTEM_TRAY_REQUEST_DOCK 0
|
|
|
|
+#define _NET_SYSTEM_TRAY_ORIENTATION_HORZ 0
|
|
|
|
+
|
|
|
|
+/* XEMBED messages */
|
|
|
|
+#define XEMBED_EMBEDDED_NOTIFY 0
|
|
|
|
+#define XEMBED_WINDOW_ACTIVATE 1
|
|
|
|
+#define XEMBED_FOCUS_IN 4
|
|
|
|
+#define XEMBED_MODALITY_ON 10
|
|
|
|
+
|
|
|
|
+#define XEMBED_MAPPED (1 << 0)
|
|
|
|
+#define XEMBED_WINDOW_ACTIVATE 1
|
|
|
|
+#define XEMBED_WINDOW_DEACTIVATE 2
|
|
|
|
+
|
|
|
|
+#define VERSION_MAJOR 0
|
|
|
|
+#define VERSION_MINOR 0
|
|
|
|
+#define XEMBED_EMBEDDED_VERSION (VERSION_MAJOR << 16) | VERSION_MINOR
|
|
|
|
+
|
|
|
|
+/* enums */
|
|
|
|
+enum { Manager, Xembed, XembedInfo, XLast }; /* Xembed atoms */
|
|
|
|
+
|
|
|
|
+typedef struct Systray Systray;
|
|
|
|
+struct Systray {
|
|
|
|
+ Window win;
|
|
|
|
+ Client *icons;
|
|
|
|
+ Bar *bar;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+/* bar integration */
|
|
|
|
+static int width_systray(Bar *bar, BarWidthArg *a);
|
|
|
|
+static int draw_systray(Bar *bar, BarDrawArg *a);
|
|
|
|
+static int click_systray(Bar *bar, Arg *arg, BarClickArg *a);
|
|
|
|
+
|
|
|
|
+/* function declarations */
|
|
|
|
+static Atom getatomprop(Client *c, Atom prop);
|
|
|
|
+static void removesystrayicon(Client *i);
|
|
|
|
+static void resizerequest(XEvent *e);
|
|
|
|
+static void updatesystrayicongeom(Client *i, int w, int h);
|
|
|
|
+static void updatesystrayiconstate(Client *i, XPropertyEvent *ev);
|
|
|
|
+static Client *wintosystrayicon(Window w);
|
|
|
|
+
|
|
|
|
diff --git a/patch/include.c b/patch/include.c
|
|
|
|
index d422f56..c82b392 100644
|
|
|
|
--- a/patch/include.c
|
|
|
|
+++ b/patch/include.c
|
|
|
|
@@ -2,4 +2,5 @@
|
|
|
|
#include "bar_ltsymbol.c"
|
|
|
|
#include "bar_status.c"
|
|
|
|
#include "bar_tags.c"
|
|
|
|
-#include "bar_wintitle.c"
|
|
|
|
\ No newline at end of file
|
|
|
|
+#include "bar_wintitle.c"
|
|
|
|
+#include "bar_systray.c"
|
|
|
|
\ No newline at end of file
|
|
|
|
diff --git a/patch/include.h b/patch/include.h
|
|
|
|
index 5f9a3fe..c01916a 100644
|
|
|
|
--- a/patch/include.h
|
|
|
|
+++ b/patch/include.h
|
|
|
|
@@ -2,4 +2,5 @@
|
|
|
|
#include "bar_ltsymbol.h"
|
|
|
|
#include "bar_status.h"
|
|
|
|
#include "bar_tags.h"
|
|
|
|
-#include "bar_wintitle.h"
|
|
|
|
\ No newline at end of file
|
|
|
|
+#include "bar_wintitle.h"
|
|
|
|
+#include "bar_systray.h"
|
|
|
|
\ No newline at end of file
|
|
|
|
--
|
|
|
|
2.19.1
|
|
|
|
|