𝘋𝘪𝘳𝘬

Somewhere between Linux woes, gaming, open source, 3D printing, recreational coding, and occasional ranting.

🔗 Me, but elsewhere

🇬🇧 / 🇩🇪

  • 9 Posts
  • 601 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle
  • Supports both programming and gaming

    Both is super uncritical.

    You can install Steam as Flatpak without any real or major issues nowadays and thanks to Proton you can basically play any games except those that use Windows-specific ring 0 spyware as their DRM or anti-cheat mechanism. Pro-Flatpak: You don’t need to deal with 32-bit libs dependency hell.

    Same with programing. The relevant compilers are all available for pretty much all common distributions. Same with the common scripting interpreters as well as all common IDEs.

    but I’m considering moving it to a VM if the performance impact is manageable

    Depending on your VM solution you can usually pass-through CPU and/or GPU and have nearly the same performance as on bare metal.

    but am open to exploring new options.

    This might be a bold move, but have you considered Arch Linux? You need to do most things by yourself, but the wiki is one of the best and most complete and extensive distribution-specific Linux wikis available. So if you’re willing to read instructions and learn new things, why not give it a try? (Disclosure: Arch is my daily driver since 2008 on desktops, laptops and homeservers).






  • It initially was that. Also the name wasn’t meant to stick around forever.

    But, out of a sudden, between updates, not even the new website URLs ready?

    I don’t follow Minetest development that closely anymore, but last time I checked there were no issues or pull requests on their GitHub, nor something official regarding a name change in the forums.

    This feels like there are just a bunch of people haphazardly deciding there is a new name now.






  • I actually just run the update commands individually when I feel like.

    su -l 'pacman -Syu'  # All regular packages
    pakku -Syu           # All AUR packages (I know this updates regular packages, too.)
    flatpak-update       # Update Flatpak packages with a function I wrote
    

    Since I do not trust Flatpak (especially when it comes to driver updates and properly removing unused crap) I once created this monstrosity.

    flatpak-update () { 
        LATEST_NVIDIA=$(flatpak list | grep "GL.nvidia" | cut -f2 | cut -d '.' -f5)
        flatpak update
        flatpak remove --unused --delete-data
        flatpak list | grep org.freedesktop.Platform.GL32.nvidia- | cut -f2 | grep -v "$LATEST_NVIDIA" | xargs -o flatpak uninstall
        flatpak repair
        flatpak update
    }
    

    The initial problem with Flatpak thinking it would be a good idea to add dozens of Nvidia drivers and re-download and update all of them on every update (causing a few gigabytes of downloaded files on every run of a normal flatpak update even if nothing needed to be updated) is reportedly fixed, but I just got used to my command.





  • 30 days paid vacation + bank holidays + regional holidays + 0.5 days of vacation each on Christmas and new years eve + generally not having to work on weekends + generally not having to work longer than 8 hours a day + public transport ticket paid by the company.

    Cannot complain.