Hi!!<br><br>I am trying to do 2 things with my app window state:<br><br>1- Hide/disable the taskbar of the app.<br>2- Put the app window always behind every other applications (so lets say, to act as an desktop applet).<br>
<br>So, i was digging a little about X server states and using xlib from python module, and i did this on my app:<br><br>self.display = display.Display(&quot;:0&quot;)<br>self.net_wm_state_skip_taskbar = self.display.intern_atom
(&quot;_NET_WM_STATE_SKIP_TASKBAR&quot;)<br>self.net_wm_state_below = self.display.intern_atom (&quot;_NET_WM_STATE_BELOW&quot;)<br>self.net_wm_state = self.display.intern_atom(&quot;_NET_WM_STATE&quot;)<br>self.display.screen
().root.change_property(self.net_wm_state, Xatom.ATOM, 32, [self.net_wm_state_skip_taskbar,], X.PropModeAppend)<br clear="all"><br>Now, this has no absolute effect on my app. What is wrong?<br><br>Thanks!<br><br>Cheers.<br>
<br>-- <br>Gustavo A. Díaz<br>GDNet Projects<br><a href="http://www.gdnet.com.ar">www.gdnet.com.ar</a>