I am wondering how I can hide Gkrellm from the dock while it is running, as I plan to have it running all the time, and I don't want it cluttering the dock. I am running 16.04 with GNOME desktop.
Asked
Active
Viewed 1,114 times
2
anand mbs
- 431
Ethan Hall
- 83
2 Answers
2
You will find that under Gkrellm settings --> general --> properties, there is a check-box to hide it from the task-bar.
Videonauth
- 33,815
Ethan Hall
- 83
0
This general solution also works and doesn't need an in-app property.
Do:
xprop | grep "CLASS"
and click on the window you want to remove from taskbar.
This will return something like
WM_CLASS(STRING) = "name", "name"
Install wmctrl
sudo apt install wmctrl
Make a program startup script or run once, depending on your preference:
wmctrl -x -r name.name -b add,skip_taskbar
Sources:
Arnaud
- 41