this post was submitted on 24 Feb 2025
31 points (100.0% liked)

Pop!_OS (Linux)

5326 readers
2 users here now

Pop!_OS is an operating system developed by System76 for STEM and creative professionals who use their computer as a tool to discover and create. Unleash your potential on secure, reliable open source software. Based on your exceptional curiosity, we sense you have a lot of it.

Unleash your potential

Whether this is your first experience with Linux, or your latest adventure, all are welcome to discuss and ask questions about Pop!_OS and COSMIC. Keep the discussions friendly though, and remember to assume good intentions whenever you reply. We're all here because we have a shared love for Linux and open source software.

System76 Logo

Support us by buying System76 hardware for you or your company! Or by donating on the Pop!_OS website through the "Support Pop" button. Pop!_OS and COSMIC are fully funded by System76 hardware sales. All systems are assembled in the USA. With your support, we'll work to push the Linux desktop forward with COSMIC.

Links

Guides

Hardware

Recommended

Community Rules

Follow the Code of Conduct

All posts on pop_os must adhere to the Pop!_OS community Code of Conduct. https://github.com/pop-os/code-of-conduct

Be helpful

Posts to pop_os must be helpful. When responding to a user asking for help, do not provide tongue-in-cheek responses like "RTM" or links to LMGTFY. Linking to direct sources that answer the asker's question is fine, but it's advised to provide some explanation as to how you got to that source.

Critique should be constructive

We within the Pop!_OS community welcome helpful criticism or ideas on ways to improve. However, basic "It's bad" or other simple negative comments don't help anyone fix anything. When voicing a complaint about something, try to point out ways the complaint could be improved or worked around, so that we can make a better product for it.

This rule applies to both Pop!_OS and its projects as well as other products available from third-parties.

Don't post malicious "advice"

It can be funny to joke about malicious commands, however this is not the venue for it. Do not advise users to run commands which will lock up their systems, steal their data, or erase their drive. Examples of this include (but are not limited to) fork bombs, rm, etc.

Posts violating this rule will be removed, even if the post is clearly in jest. Repeated offences may lead to a ban. You may understand that the command isn't serious, but a new user might not.

No personal attacks

Posts making a personal attack on any user will not be tolerated.

No hate speech

Hate speech of any kind will not be tolerated. Any violations will be removed, and are grounds for a ban.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] -4 points 1 week ago (5 children)

Gonna have to raise the age old question about this project, because myself and a lot of other developers are only seeing the one angle.

The question is: why?

What is this project solving that System76 is willing to pay multiple developers for? It's almost pound-for-pound a recreation of GNOME, right down to the menu system.

Rust is not a features it's a language. It also doesn't solve any issues with Gnome that I'm aware of.

The biggest issue in the Gnome world I'm aware of is the lack of parity with Windows with regards to display capabilities, and possibly the plugin system causing issues.

So I'm still wondering...why??? What's the best feature anyone can point out here? It's not resources, in fact, this Alpha performs pretty poorly on its own vs Gnome. What's the killer feature I'm missing?

[–] [email protected] 11 points 1 week ago (1 children)

Gnome upstream is notoriously hard to work with and will insult it's users and make up bogus reasons to reject perfectly good feature requests and bugreports.

Gnome is slow as balls. On low end hardware gnome bloody chugs compared to KDE let alone the "light weight" DEs.

Gnome is insanely slow to implement many features.

Gnome is hostile to working with upstream wayland protocols like window decore.

S76 want's their desktop to look and work a certain way, and making gnome look/work like that is difficult especially when upstream is not prepared to play ball.

Gnome devs have insulted S76 devs in public forums, have complained about S76 not funding gnome's A11y efforts despite S76 donating quite a lot to gnome over the course of 5 years, $100'000 https://old.reddit.com/r/linux/comments/xwtns5/does_it_seem_like_gnome_wants_system_76s_cosmic/ira4e8o/

Personally, not needing to deal with gnome developers alone is a feature. Rust is just a tool which makes developing your own DE, compositor included, very easy.

[–] [email protected] 9 points 1 week ago (1 children)

I've had issues where the tiled windows go all over the place before/after connecting to external monitors in GNOME Pop shell. I can't speak for the entire Cosmic project, but as an end user who wants an established DE with native tiling windows that always work as intended, I consider the project justified

[–] [email protected] 7 points 1 week ago* (last edited 1 week ago)

See the Ubuntu Summit 2024 talk: https://www.youtube.com/watch?v=bwrBKccfYws

It’s not resources, in fact, this Alpha performs pretty poorly on its own vs Gnome

I haven't seen any benchmark where GNOME was more performant than COSMIC. Despite alpha status, it is already much more responsive than GNOME.

GNOME uses a single thread to render all displays in a multi-display configuration. This is often so slow that they need to rely on double or even triple buffering when the frame rate lags behind the display's refresh rate. Meanwhile in COSMIC, thanks to the thread safety features of Rust, it was easy to implement thread-per-display multi-threaded rendering. This means that each display is rendered and composited independently on their own respective threads.

GNOME's compositor also has an entire JavaScript runtime bundled inside of it, which it uses for drawing interfaces and handling application logic for those interfaces. All within the same process as the compositor, slowing down its event loop. COSMIC instead keeps the compositor process very lean, with all desktop interfaces running in their own isolated processes outside of the compositor via wayland's layer-shell protocol.

[–] ProtonBadger 4 points 1 week ago

It's way more configurable/flexible than the very rigid GNOME while still being less complex than Plasma, so it falls in a sweet spot between those two extremes.

[–] [email protected] 1 points 1 week ago (1 children)