• 14 Posts
  • 641 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • Interesting how the numbers between “computer pros” and hobbyists (Steam Survey) diverge. Unsurprisingly for Steam gamers the Windows numbers are way higher but for Linux specifically Ubuntu is crashing hard since a few years from absolute domination to all Ubuntu versions + derivatives (Mint + pop_OS) combined barely making up 20% of the Linux user base whereas at Stack Overflow there’s a clear lead of Ubuntu over the rest.


    • KDE Plasma has currently better upstream development (a side effect of Steam Deck) but the integration of KDE into Fedora is done by volunteers.
    • Gnome is integrated into Fedora by Red Hat employees but upstream development lags a bit behind in adopting some newer technologies Red Hat isn’t that interested for RHEL.

    I used Fedora in the past and found the KDE Spin a little less polished. I don’t know the current situation but there was a time Fedora KDE shipped out of the box with three web browsers because the volunteers couldn’t agree on one, whereas the RH employees just decided that they want Firefox and not Gnome Web for RHEL, so in Fedora they just did the same. Updates were rolled out in a timely manner (and I heard nothing that indicated anything changed in that regard), so the volunteer squad didn’t do a worse job there than the paid Gnome people.




  • An old (now decommissioned) notebook of mine had a broken headphone jack. I didn’t have BT headphones then. Audio output worked technically but the detection whether headphones were plugged in or not did no longer work.

    I wrote a very short amixer script to force unmute the jack, set the volume to 50 or so percent and set the speaker volume to 0% but not “mute” state. I could then use my wired headphones again.











  • how come opensuse has that button

    Having that button doesn’t automatically result in that feature actually working. The development stakeholders don’t seem to be interested in it actually working other than chance and given that even Windows and macOS moved to “always connected” suspend instead of full sleep with hibernation, I don’t see a push for feature parity on the horizon (that’s why Windows laptops and more recently also MacBooks often cannot wake up because the battery is depleted). It’s really bad and IMO one of the few big problems to solve (at least on my Windows notebook because of its broken regular suspend, I can force it into hibernation).

    I had somewhat decent success making a swap file (not a partition):

    sudo fallocate --length 16600MiB /swapfile;sudo chmod 600 /swapfile;sudo mkswap /swapfile;sudo swapon /swapfile;sudo nano /etc/fstab

    Then add /swapfile swap swap defaults 0 0 the fstab file now open in Nano.