You are not logged in.
Pages: 1
I'd like to hide my Cisco Anyconnect client once i've made a connection....is there a way to have the panel (i think the window buttons area) to ignore and not display certain apps from showing up?
thanks
Offline
Manually, you can use wmctrl:
wmctrl -r :SELECT: -b add,skip_taskbar
...and when prompted with the cross cursor select the window that you want hidden from taskbar.
To automate it, you could use a tool like devilspie and a .ds file like:
(if (is (application_name) "APPNAME")
(begin
(skip_tasklist)
)
)
...where APPNAME is the name of the app (which you can get from running devilspie in debug mode: "devilspie -d").
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 ---
Online
fascinating!! I will look into this...thanks
Offline
Pages: 1
[ Generated in 0.010 seconds, 7 queries executed - Memory usage: 519.66 KiB (Peak: 520.84 KiB) ]