all repos — openbox @ 58acd2b2dd7a55280a3d6df6f6e6eb2f03aa0888

openbox fork - make it a bit more like ryudo

make skiptaskbar test actually skip the taskbar
Dana Jansens danakj@orodu.net
commit

58acd2b2dd7a55280a3d6df6f6e6eb2f03aa0888

parent

7d93a21878db8d06bd4e3e9f6bcb6e0aa2e324ed

1 files changed, 10 insertions(+), 16 deletions(-)

jump to
M tests/skiptaskbar.ctests/skiptaskbar.c

@@ -23,9 +23,9 @@ #include <X11/Xatom.h>

int main () { Display *display; - Window parent, child; + Window win; XEvent report; - Atom state, modal; + Atom state, skip; int x=10,y=10,h=400,w=400; display = XOpenDisplay(NULL);

@@ -36,24 +36,18 @@ return 0;

} state = XInternAtom(display, "_NET_WM_STATE", True); - modal = XInternAtom(display, "_NET_WM_STATE_MODAL", True); + skip = XInternAtom(display, "_NET_WM_STATE_SKIP_TASKBAR", True); - parent = XCreateWindow(display, RootWindow(display, 0), - x, y, w, h, 10, CopyFromParent, CopyFromParent, + win = XCreateWindow(display, RootWindow(display, 0), + x, y, w, h, 10, CopyFromParent, CopyFromParent, CopyFromParent, 0, 0); - child = XCreateWindow(display, RootWindow(display, 0), - x, y, w/2, h/2, 10, CopyFromParent, CopyFromParent, - CopyFromParent, 0, 0); - XSetWindowBackground(display,parent,WhitePixel(display,0)); - XSetWindowBackground(display,child,BlackPixel(display,0)); + XSetWindowBackground(display,win,WhitePixel(display,0)); + + XChangeProperty(display, win, state, XA_ATOM, 32, + PropModeReplace, (unsigned char*)&skip, 1); - XSetTransientForHint(display, child, parent); - XChangeProperty(display, child, state, XA_ATOM, 32, - PropModeReplace, (unsigned char*)&modal, 1); - - XMapWindow(display, parent); - XMapWindow(display, child); + XMapWindow(display, win); XFlush(display); while (1) {