Workspaces
Automatic workspace selection per VM is the last piece of the puzzle of this project. I have been hesitant to write it. Mostly because of two reasons. 1st of all, custom labels & custom icon effects worked nice for me personally. I barely required Workspaces to organize Qube Windows. Yet the major reason is something else. It is the never ending X11 to Wayland transition.
Technical overview
At the moment, Qubes OS uses the X Windows system to communicate window details between host and VMs. Qube Windows you see in dom0 or GUIVM do not have individual process IDs within dom0. They have X Window IDs. You could get a list of them with wmctrl -l
or similar tools. Then you could get the detail of each Window by ID via xprop -id ID
. This would reveal that Qubes attaches special _QUBES_VMNAME
and some other very useful properties to each Windows. This is all done in qubes-gui-daemon. It is possible to iterate through list of Windows and send Windows belonging to specific Qube to desired Workspace. Or Maybe minimize them all. Or stack them on top of other windows. Or blink their Icons and Window borders… All of this could be done programmatically without necessity of external tools. It could be done via direct interaction with EWMH. There is even a ready to use Python library for that (even that is not needed). The Qubes icon-receiver daemon does something similar and could be an inspiration. Overall it is easy. I just wonder what this tool should be called. Perhaps qvm-workspace-tt?
Wayland drama
All of the above is going to break once Qubes OS fully transitions to Wayland. EWMH is strictly an X Windows system standard. If you want to have some background on Qubes OS X11->Wayland project, I would recommend you to watch Demi Marie Obenour’s presentation during Qubes OS Summit 2013. But I believe that it is not going to happen in short or even mid-term. Unlike the transition from Pulseaudio to Pipewire which was/is still trouble making, this one is going to make users and developers cry. Lots of things might break. Core tools or community tools (e.g. icon-receiver daemon, qvm-xkill, Qubes Video Companion, …). Pipewire was introduced just 6 years ago. Wayland has been pushed for over 16 years. Even some users have published long articles against it. XFCE is not wayland ready yet but at least they have a roadmap (without any commitments). The last commit Demi did to qubes-gui-agent-wayland repository was 7 months ago. And she is overloaded. Up to the point that some of her projects are postponed and moved to the backlog. Yet we need Wayland. It will come to Qubes soon or later but will be inevitable.
So why do it
This will be my personal way of observing Qubes OS transition to Wayland. Since it is going to be an exciting procedure. I will write the qvm-workspace-tt tool in two front/back-end parts. One to intefact with user and the other to interact with compositor(s). And I will learn lots of new things.