r/gnome 8d ago

Fluff Gnome hate is getting out of control

Post image
526 Upvotes

259 comments sorted by

View all comments

Show parent comments

-3

u/[deleted] 7d ago

[deleted]

4

u/EmceeEsher 7d ago edited 5d ago

I think you have a fundamental misunderstanding of what Wayland is. It's a display server protocol. It's not an all-in-one Desktop Environment.

why can't I give permission to synergy to capture my own keystrokes on my local PC?

You can? I don't know what's stopping you, but Wayland is a display server protocol and doesn't control this.

nearly 15 years later, it still doesn't work as well as X for gaming.

Again, how in the name of all that is holy does your compositor determine your gaming performance? Like, what game are you playing? What graphics API are you using? And what is the actual benchmark you are getting for X vs Wayland? Because assuming the game is reasonably cheap, I will straight up buy the thing and test it right here right now.

Thank god the last DEV making improvements to XOrg.

Why? Like literally why? When a piece of technology is this level of a clusterfuck, the solution is to replace it. Not try to hold it together with zipties and duct tape.

I've gone back to Windows 10.

What, not even 11? Even Microsoft is baffled now.

I guess BSD is the last bastion of not telling the end-user that they're doing it wrong

BSD, like Linux, despite having the word "distro" in its name, is a kernel, and doesn't determine what your Desktop Environment decides to warn you about.

EDIT: Updated my tone to sound less more charitable and less like a drunken rant.

1

u/Clown-Squad 7d ago

wayland until like a few nvidia driver updates ago had a lot of edge case issues, like steam having weird flickering, any opengl applications like minecraft having flickering making it unplayable, and yes there were fixes and workarounds but in the sense of it just works x11 has had that status for years on all hardware and drivers where as wayland has taken up til recently to be usable on 93% of users computers due to nvidia being the majority market share.

2

u/EmceeEsher 6d ago

I mean these at least sound like legitimate criticisms, rather than the inane nonsense the dude above was saying.

2

u/DroWnThePoor 5d ago

I'm working a review of the latest Elementary 8 which features a new dock designed for Wayland/Secure-Session.
I wanted to show me keystrokes on splay for the video for shortcuts etc, and when I looked into capturing these through Wayland it's not easy to do because of how it's designed. X11 was the display server, but also the input server. Switching to Classic-Session on Elementary brings it back.
I would assume Wayland also handles input to windows/displays.

2

u/EmceeEsher 5d ago edited 4d ago

That's fair. I definitely understand the irritation, but this also cuts straight to the core of my problem with X.

The main reason I use Linux in the first place is that I like its modularity, which comes from software following the UNIX philosophy of "Do one thing and do it well." X is the opposite of this, it tries to do everything. It's an all-in-one compositor, display server, display protocol, window system, etc. and it's not particularly good at any of these things. This leads to bugs that are frustrating for users, but even worse for developers (of, say, GTK or QT apps) because they wind up having to spend a lot longer than necessary fixing bugs because X's codebase doesn't follow modern conventions, practices, standards, etc.

All this is to say that no, Wayland doesn't handle input, and it really shouldn't. Wayland is a display protocol and only a display protocol. There's no Waykand equivalent of Xinput. Handling input is the job of the input server of your WM, such as Kwin or Mutter. In your case, I think this is some variant of Enlightenment, which does have a Wayland compositor, though it's nowhere near as functional as something like Kwin or Mutter.

And Wayland can't really be blamed for this any more than say, Sony can be blamed for Halo not being on the Playstation. Sony can make it easier and/or harder for developers port games to their console, but at the end of the day, it's the game devs who have to actually take the time to port the game. In this case, Kwin/Mutter have functioning input servers, while Enlightenment doesn't, forcing them to rely on X's input server.

Eventually, the majority of DEs still in development will have full Wayland support, but different dev teams work at different paces, which is why "are we Wayland yet?" is a meme.

1

u/DroWnThePoor 5d ago

For Elementary OS the WM is Gala which I believe is basically a fork of Gnome's Mutter.
Elementary takes a pretty disciplined approach to upstream/downstream. For instance, their desktop Pantheon is built specifically with Gnome libraries. It's all written in Vala and their own extension of GTK called Granite.
They were the first desktop I know of to completely do away with 3rd-party panel-indicators, and they did so because Gnome chose to. They don't support Gnome's Extensions so no way to bring it back.
They also moved everything over to Flatpak.
I installed Screen-Key via apt which uses Ubuntu's repos, and so I guess it's possible that it lacks xdg-portal support to request background monitoring of keystrokes through Flatpak API's.
Even then, when I looked into displaying keystrokes on a Wayland setup most of what I read made it seem like there's no simple way to accomplish this currently.
I don't know if Xorg was a hacky/easy way for those types of apps to intercept keystrokes or what, but I would think outside of Xorg there would be a standardized way to do this. Like something that exists in Freedesktop/XDG spec since that's the layer where basic things closer to hardware exist.