st
simple terminal
git clone https://9o.is/git/st.git
commit f252dbf599be7be38568ae6137240d50f2058fa7 parent fd57c23ae8cc4fb6ba3465e53dfe83a9e0c16507 Author: noname <noname@inventati.org> Date: Sun, 27 Apr 2014 15:39:39 +0400 Use MODBIT in xseturgency. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -3570,7 +3570,7 @@ void xseturgency(int add) { XWMHints *h = XGetWMHints(xw.dpy, xw.win); - h->flags = add ? (h->flags | XUrgencyHint) : (h->flags & ~XUrgencyHint); + MODBIT(h->flags, add, XUrgencyHint); XSetWMHints(xw.dpy, xw.win, h); XFree(h); }