Lydia Winters leaves Mojang
  • that_leaflet that_leaflet Now 100%

    I don’t see it there either, but you can see her responses to people on Reddit at reddit.com/u/lydiawinters

    3
  • Google looks to be fully shutting down unsupported extensions and ad blockers in Chrome – which might push some folks to switch to Firefox
  • that_leaflet that_leaflet Now 85%

    Misleading title. This is nothing new, just Manifest V2 being removed. Ad blockers like uBlock Origin Lite still work.

    14
  • ``` machinectl shell gdm@ $(type -P gsettings) set org.gnome.desktop.interface accent-color "pink" ``` This command will change the accent color to pink, but replace pink with any supported color. I'm not very familiar with the machinectl command, but what I think it's doing is running the gsettings command as the gdm user.

    11
    0
    github.com

    cross-posted from: https://lemmy.world/post/20491286 > For those unaware, about umu-launcher > > > This is a unified launcher for Windows games on Linux. It is essentially a copy of the Steam Runtime Tools and Steam Linux Runtime that Valve uses for Proton, with some modifications made so that it can be used outside of Steam.

    35
    2
    github.com

    cross-posted from: https://lemmy.world/post/20491286 > For those unaware, about umu-launcher > > > This is a unified launcher for Windows games on Linux. It is essentially a copy of the Steam Runtime Tools and Steam Linux Runtime that Valve uses for Proton, with some modifications made so that it can be used outside of Steam.

    24
    2
    github.com

    For those unaware, about umu-launcher > This is a unified launcher for Windows games on Linux. It is essentially a copy of the Steam Runtime Tools and Steam Linux Runtime that Valve uses for Proton, with some modifications made so that it can be used outside of Steam.

    62
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    Fedora Linux that_leaflet Now 100%
    IPU6 camera support in Fedora 41
    https://hansdegoede.dreamwidth.org/28841.html
    4
    0
    Dear Gnome,
  • that_leaflet that_leaflet Now 100%

    Could you clarify your second point?

    5
  • Got a "Perform MOK management" screen while trying to boot Linux Mint without Secure Boot with UEFI, what does it mean?
  • that_leaflet that_leaflet Now 100%

    If you continue without adding the keys, you may have issues if you rely on out of tree drivers like Nvidia. Personally, I would hit continue then leave secure boot off.

    1
  • Got a "Perform MOK management" screen while trying to boot Linux Mint without Secure Boot with UEFI, what does it mean?
  • that_leaflet that_leaflet Now 100%

    For Secure Boot, the kernel is "signed" with a key. During boot up, Secure Boot checks to make sure that key is valid. Most kernels are signed with Microsoft's key that is preloaded on basically every system. However, not all kernels can be signed with Microsoft's key; if you install a proprietary driver (which you likely selected to during the setup), to continue using secure boot you need to sign the kernel using your own key.

    That's what MOK management is for. You are adding your own key to your system to use for Secure Boot.

    Personally, I just disable Secure Boot. While it does have some security benefits, it's not worth the headache IMO.

    8
  • Linux Mint 22.1 Slated for Release in December with Revamped Cinnamon Theme
  • that_leaflet that_leaflet Now 100%

    It says that in the 9to5Linux article, not the original source. The blog post simply says "becomes ready for inclusion in the next version of Cinnamon."

    Not to say that the 9to5Linux article is wrong since Linux Mint very well could ship the new theme as an option, but not the default theme.

    2
  • Linux Mint 22.1 Slated for Release in December with Revamped Cinnamon Theme
  • that_leaflet that_leaflet Now 100%

    I don’t think this new design will be used in Linux Mint by default. I believe this is just for distros that use Cinnamon’s default theme, which is different from Linux Mint’s default theme.

    But who knows, maybe it could also become default in Linux Mint.

    5
  • winewayland: "Use subsurfaces for unmanaged windows" merged
  • that_leaflet that_leaflet Now 100%

    I haven’t been able to try it yet. I only use Proton, but Valve compiles it without winewayland.

    3
  • Arch Linux and Valve Collaboration - Arch-dev-public - lists.archlinux.org
  • that_leaflet that_leaflet Now 100%

    Not directly helping with SteamOS 3. But this financial support is helping Arch improve.

    20
  • What's the best way to watch youtube without adds on ios? (without premium).
  • that_leaflet that_leaflet Now 100%

    Safari + AdGuard + PiPifier would probably be a good combo.

    11
  • COSMIC Alpha 2 Released
  • that_leaflet that_leaflet Now 100%

    It's kinda ironic that theming GTK is easier when it doesn't officially support theming. Especially when it comes to Qt flatpak apps.

    9
  • Eliminating Memory Safety Vulnerabilities at the Source | Google's use of Rust in Android's Linux kernel
  • that_leaflet that_leaflet Now 100%

    Linux support is definitely moving slower than the Rust team wants, but the team and Linus are still optimistic.

    18
  • Eliminating Memory Safety Vulnerabilities at the Source | Google's use of Rust in Android's Linux kernel
  • that_leaflet that_leaflet Now 100%

    Android uses forked versions of the Linux kernel, based on Linux LTS versions. They added in Rust support in 2019 and most new code since then has been written in Rust in order to avoid memory safety vulnerabilities. And memory safety vulnerabilities have been significantly down since 2019.

    Now that upstream Linux is adopting Rust, we should hopefully see a similar results. Though likely slower than Google (they went all-in on Rust) while upstream Linux new code will seemingly be mainly C for the foreseeable future.

    22
  • Vanilla OS 2 released (end of July)
  • that_leaflet that_leaflet Now 100%

    Note that this is from late July.

    23
  • Automated installation of multiple applications after a fresh OS install? (Fedora)
  • that_leaflet that_leaflet Now 100%

    I think that’s just a dependency issue unrelated to the script.

    1
  • Automated installation of multiple applications after a fresh OS install? (Fedora)
  • that_leaflet that_leaflet Now 100%

    I have a bash script I use to script my Silverblue install. Something like this should work.

    # space-separated list of packages to install
    S_RPM_PACKAGES_TO_INSTALL="pkg1 pkg2 pkg3"
    
    # function to install the packages
    dnf_install () {
    	sudo dnf install -y $1
    }
    
    # call to function, passing the list
    dnf_install "$S_RPM_PACKAGES_TO_INSTALL"
    

    I have it set up this way so that I just have a bunch of bash variables describing the stuff I want to install all at the top of the file, but the function definitions and calls lower down since I don't need to see them.

    It also does other things like removes packages from the system, removes some preinstalled flatpaks, installs flatpaks from Fedora Flatpaks / Flathub / gnome-nightly, and sets up gnome through a list gsettings commands.

    As I use my system, I add new apps to the list I want next time I install and remove apps I don't use.

    11
  • Frog Protocols announced to try and speed up Wayland protocol development
  • that_leaflet that_leaflet Now 100%

    I doubt this will have much of an effect. Compositors already implement protocols that aren’t in upstream yet.

    All this really is is putting some of those protocols in a GitHub repo and giving them a nice name. Gamescope will naturally implement them because frog works on gamescope. KDE might implement a few. Gnome and wlroots probably won’t implement them because (1) Gnome prefers a more lean set of protocols and likely won’t adopt a protocol until it’s “finished” and (2) Simon Ser, the wlroots main maintainer, is very involved with upstream protocols and would rather see development happen there.

    7
  • that_leaflet Now
    143 133

    Leaflet

    that_leaflet@ lemmy.world