If anything, this leads to more fragmentation since now you have to hack your own way to control it, rather than using something standard (at least on Linux) like dbus.
(P.S.: I suspect Swaysock might've never existed if it were not for the fact that Sway is more or less a direct recreation of i3wm as a Wayland compositor; it is the equivalent of i3 IPC. You can and should just use Wayland protocols even in Sway where possible.)
Meanwhile, every Wayland compositor speaks at least the core Wayland protocols and probably some of the extensions, and they all go through the same standardization process, whereas there's certainly no such process for DBus or random UNIX domain sockets based protocols. It's simpler to just use Wayland protocols where possible.
What standard? Other compositors have their own specific protocol to talk to it even if it's done other dbus.
It's xml but at least it's plain and well documented with sensible defaults
https://github.com/wizbright/waybox
Glad these 2 projects exist since I would want fvwm (prefered) or a fluxbox clone under wayland when I am forced to move
Even labwc's stated "let's try to be Openbox-theme-compatible" goal is highly limited (see support tickets with various missing features) and plenty of other compositors seem to have just limited, baked-in decorations or promises "a plugin ecosystem will appear and fill the hole".
The closest I've seen is Wayland Maker, which at least has a clear focus of "let's copy a recognizable X11 look and feel" but it's a few releases shy of daily-driver, and arguably targets a relatively low-hanging fruit (WindowMaker lacks some of the elaborate scriptability and functionality of FVWM)
I suppose part of this might be because of Client-Side Decoration, where half the software says "I reject your titlebar and substitute my own", but I feel like we're nowhere even at "You can easily get a 1:1 pixel match of the LOOK of your FVWM/CTWM/Openbox desktop", let alone all the weird little feel rules and tools that have developed over the decades. Does anyone even do a pager or equivalent for FvwmButtons on Wayland, or is it all uber-minimal "bars"?
TBH, that's why I try Wayland for about 20 minutes every 3 months and bounce off. I feel like I'm being told I have to accept less. Even if I accept the weird compromises Wayland expects (replacing direct media player and volume control access to hotkeys with a set of compositor bindings and workaround tools, finding a substitute for XScreensaver to protect/exercise my expensive new OLED monitor, probably shop for a new terminal), I still can't make it look and feel like home.
You lasted longer than me. I tried it once for 10 minutes and went back to X. I never looked back. I dread the day X is no longer supported. I think that will happen once Red Hat (IBM) and/or freedesktop.org forces Mozilla to support only Wayland.
The thing I want to do, but wasn't able to find a way to accomplish was to have a virtual desktop switcher gadget and a separate gadget to swallow minimized applications where each can be placed independently on the screen (and preferably auto hide)-- this will be separate application(s) from Labwc, but I did not find anything for Wayland that could do this (I do not like the MS Windows style task bar with menus, desktop switcher, etc., in one single bar).
Anyone have any suggestions?
Another nice to have would be to have screen edge bindings, where moving the mouse pointer or dragging a window over an edge, or corner, of the screen can be made to take an action. I'm not sure if this could even be accomplished with a stand-alone utility under Wayland, or if this must be done by the compositor. But, if possible, and anyone knows of something that exists, I am all ears.
One of the things I liked with labwc is that you can have traditional X style application menus by right-click/left-clicking the root window (it is not the default, but was easy to setup).
Edit "~/.config/labwc/rc.xml" to add the following:
<!-- desktop pager settings -->
<windowSwitcher show="yes" preview="yes" outlines="yes" allWorkspaces="yes"> <fields> <field content="type" width="25%" /> <field content="trimmed_identifier" width="25%" /> <field content="title" width="50%" /> </fields> </windowSwitcher>
<desktops> <number>4</number> <prefix>ws</prefix> </desktops>
<keyboard>
<default />
<keybind key="C-A-Left">
<action name="GoToDesktop" to="left" wrap="yes"/>
</keybind>
<keybind key="C-A-Right">
<action name="GoToDesktop" to="right" wrap="yes"/>
</keybind>
</keyboard>
One thing that really hinders adoption is incompatibility - and the biggest Wayland compositor being Gnome, the dbus protocol is the most popular. There is a bit of a wlroots ecosystem, but it’s only in third place behind Gnome and KDE.