You are not logged in.
Pages: 1
Hello,
I am using Xpad as a means to take notes and stick'em on my dekstop.
Notes however appear in the task-bar, which is not what I would expect from such an application.
How can I tell Xfwm4 to make this application's windows skip the taskbar?
Thanks.
Benjamin
Offline
You can manually adjust windows properties using wmctrl
It will be something like this :
$ wmctrl -l
0x0140001f -1 hpmini xfce4-panel
0x01600003 -1 hpmini Desktop
0x03200004 3 hpmini Terminal
0x03200850 0 hpmini Terminal
0x02000003 0 hpmini Calculator
0x0140f863 -1 hpmini xfce4-panel
$ wmctrl -r Calculator -b add,skip_taskbar
Xfce is NOT Xubuntu. Bugs in Xubuntu don't mean that Xfce is buggy ...
Offline
I had to proceed using the window's class name however:
wmctrl -x -r xpad.xpad -b add,skip_taskbar
I thought it was solved first, but now I realise it's not: the skip_taskbar is not saved after the window is closed.
How can I set this flag for good?
Last edited by jesuisbenjamin (2012-01-26 16:09:55)
Offline
How about using devilspie (http://burtonini.com/blog/computers/devilspie/) with a configuration file like this:
$ cat ~/.devilspie/xpad.ds
(if
(is (application_name) "xpad")
(begin
(skip_pager)
(skip_tasklist)
)
)
Note: devilspie needs to be running for this to work:
devilspie &
...you can add it to your autostart list.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Good one, although I am not sure whether the use of devilspie is necessary.
I hadn't thought about it before, but I'll simply make a script that starts up xpad first and then runs wmctrl.
Offline
Pages: 1
[ Generated in 0.008 seconds, 8 queries executed - Memory usage: 529.13 KiB (Peak: 530.41 KiB) ]