]> Dogcows Code - chaz/openbox/blobdiff - tests/skiptaskbar.c
Merge branch 'master' into chaz
[chaz/openbox] / tests / skiptaskbar.c
index a02d199d50e18b4c20605fd1175a61645609af16..bb585c6eafacef1cfa9f1bc6f3cd76d7f1e287a1 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
 
-   modal.c for the Openbox window manager
+   skiptaskbar.c for the Openbox window manager
    Copyright (c) 2003-2007   Dana Jansens
 
    This program is free software; you can redistribute it and/or modify
@@ -26,6 +26,7 @@ int main () {
   Window     win;
   XEvent     report;
   Atom       state, skip;
+  XClassHint classhint;
   int        x=10,y=10,h=400,w=400;
 
   display = XOpenDisplay(NULL);
@@ -42,11 +43,15 @@ int main () {
                       x, y, w, h, 10, CopyFromParent, CopyFromParent,
                         CopyFromParent, 0, 0);
 
-  XSetWindowBackground(display,win,WhitePixel(display,0)); 
+  XSetWindowBackground(display,win,WhitePixel(display,0));
 
   XChangeProperty(display, win, state, XA_ATOM, 32,
                  PropModeReplace, (unsigned char*)&skip, 1);
 
+  classhint.res_name = "test";
+  classhint.res_class = "Test";
+  XSetClassHint(display, win, &classhint);
+
   XMapWindow(display, win);
   XFlush(display);
 
This page took 0.020873 seconds and 4 git commands to generate.