mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
8 lines
200 B
C
8 lines
200 B
C
void
|
|
setnetwmicon(void)
|
|
{
|
|
xw.netwmicon = XInternAtom(xw.dpy, "_NET_WM_ICON", False);
|
|
XChangeProperty(xw.dpy, xw.win, xw.netwmicon, XA_CARDINAL, 32,
|
|
PropModeReplace, (uchar *)&icon, LEN(icon));
|
|
}
|