• 0 Posts
  • 76 Comments
Joined 1 month ago
cake
Cake day: August 22nd, 2024

help-circle




  • I recommend using PollyMC, if you want to play Minecraft for free. It’s based on the awesome Prism Launcher, is completely open source, and has more features than the official launcher or TLauncher.

    If you want something that’s basically the exact same thing as Notepad++, check out Notepad Next. If you want something similar, try Notepadqq, and if you want something better, use Kate. It’s developed by the KDE Project btw, and fits in well with the rest of your Plasma desktop experience.

    I have installed Lutris (flatpak), Bottles (flatpak) and Heroic (Appimage).

    Why did you install Heroic as an AppImage? Just go with the Flatpak, which is more convenient, because you can easily update it from Discover.
    https://flathub.org/apps/com.heroicgameslauncher.hgl

    I also recommend installing ProtonUp-Qt btw, it’s an easy to use graphical tool that lets you manage multiple versions of Proton. Once you have it installed, use it to download the latest version of Proton-GE-custom. It has better performance and compatibility with many games.

    When actually installing Linux onto your machine, I would reconsider your choice of distribution though. Debian isn’t bad, but there are better, easier, more user-friendly distros for gaming. One example of this is Bazzite. It’s pretty similar to Steam OS, and you can’t really break it.







  • It’s pretty easy. You either get it from Cargo (the Rust package manager) or add a custom repo to apt.

    Cargo is the easier and safer option: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh && cargo install eza

    Custom apt repo:

    sudo apt update
    sudo apt install -y gpg
    
    sudo mkdir -p /etc/apt/keyrings
    wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo gpg --dearmor -o /etc/apt/keyrings/gierens.gpg
    echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
    sudo chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list
    sudo apt update
    sudo apt install -y eza
    

    In my opinion though, you should also try lsd. It’s even better than eza. You can also get it from Cargo, just a simple cargo install lsd.