I’m starting to get ads in my Windows notifications so it’s time I move.

I got Manjaro KDE Endeavor OS with KDE installed and got my most played non-steam games running through steam proton which is awesome.

But I have a few big issues.

  1. My network randomly drops. A restart fixes but I can’t even download Cyberpunk with my 1GB connection before it crashes. Klogs showed something about the network manager successfully shutting down but I can’t find much else.

  2. No Radeon software. I sometimes need to record clips/ stream so relive is nice but the biggest problem is my second 1080p monitor I Super Resolution to fit more programs on it. I can’t find a way to replicate that functionality. I also do not know how to control Radeon anti-lag, chill, Smart Memory Access, etc.

  3. HDR controls. Nothing in the display settings so I’m lost

  4. Alternative Software I haven’t spent a lot of time looking but things like wallpaper engine, rainmeter, powertoys.

If anyone ran into the same things and has solutions it’d make my day.

EDIT: With the overwhelming note from everyone here I distro-hopped to Endeavor OS with KDE (I liked that it let me install multiple DE’s) biggest loss is the App store but I was already using winget/choco on Windows so having to do pacman -S is pretty much the same. EDIT: Added KDEs Discover and its backend, seems to be alright.

installing plasma-wayland-session and switching to Wayland let me set display scale below 100% removing the biggest need for Radeon Software.

Network thing I’m still digging into but it persisted from the distro hop and I think is Steam-related because if I don’t launch steam it just doesn’t happen

EDIT2:

netmon logs - https://pastebin.com/wKZrV04Y demsg - https://pastebin.com/3rAPcAve

  • Max-P@lemmy.max-p.me
    link
    fedilink
    arrow-up
    1
    ·
    9 months ago

    My network randomly drops. A restart fixes but I can’t even download Cyberpunk with my 1GB connection before it crashes. Klogs showed something about the network manager successfully shutting down but I can’t find much else.

    Share the output of sudo dmesg logs as well as sudo journalctl -u NetworkManager | cat. The first is the kernel logs about what’s going on with your connection, and the second one is from the utility that manages networking on most systems (there’s alternatives but pretty sure Manjaro uses NM). It should give us more info as to the reason of the disconnections.

    No Radeon software. I sometimes need to record clips/ stream so relive is nice but the biggest problem is my second 1080p monitor I Super Resolution to fit more programs on it. I can’t find a way to replicate that functionality. I also do not know how to control Radeon anti-lag, chill, Smart Memory Access, etc.

    Most of these things are more deeply integrated on Linux, so you don’t need to worry about them for the most part. Some of them are also buzzwords for marketing purposes for features that really should be default on, which on Linux, when it’s reasonable, do default to on. For example, you don’t turn Smart Memory Access on: if it can use it, it will use it. Same with VRR, at least on Wayland: just on by default on KDE.

    • ReLive: you can use any screen recorder that will work on any GPU. Right now with the Wayland transition it’s a bit weird and OBS is the better choice there, but on an Xorg session you can just use something like Simple Screen Recorder. On KDE, Spectacle, the default screenshot utility also has the ability to record short video clips but it can be a little buggy.

    • Super Resolution: just set the monitor’s scaling to less than 100% in the display settings. It’s technically probably better than Super Resolution for apps that supports <100% scaling, because instead of making a fake 4K display for example, it’ll render everything at 1080p still but instead cause apps to render smaller, achieving the same result but with the potential of remaining pixel perfect. It won’t be doing any AI scaling though, so YMMB.

    • Anti-lag: it’s kind of a hack, and on Linux we’re trying to get things right for the graphics stack with Wayland. But if you’re running Wayland, KWin is already doing what it can to reduce lag on the desktop, and individual applications have to implement similar methods if they want to. Have you run into specific things where it’s noticeable? Linux is generally pretty good when it comes to input lag already.

    • Chill: you can run games in Valve’s gamescope wrapper to limit framerate. That’s exactly how they do it on the Steam Deck. You can also use CoreCtrl to underclock the GPU.

    • Smart Memory Access: it’s just marketing for Resizable BAR, and it’s on by default. You can check with sudo dmesg | grep BAR=, if it’s greater than 256M and equal to your GPU’s memory size, it’s working.

    [    7.139260] [drm] Detected VRAM RAM=8176M, BAR=8192M
    [    7.576782] [drm] Detected VRAM RAM=4096M, BAR=4096M
    

    HDR controls. Nothing in the display settings so I’m lost

    Yeah that one’s still WIP unfortunately. It’s technically possible on Xorg but you have to run everything HDR all the time and things break. It’s coming along fairly well!

    Alternative Software I haven’t spent a lot of time looking but things like wallpaper engine, rainmeter, powertoys.

    • Wallpaper Engine -> KDE’s desktop backgrounds have a lot of options to do similar stuff including animated wallpapers. Go to change your wallpaper, there’s a button to download new modules and new backgrounds. For example: https://store.kde.org/p/1413010
    • rainmeter -> Conky, or KDE’s desktop widgets. Right click on your desktop, add graphical component.
    • powertoys -> A lot of those have built-in and better equivalents. Fancy zones: we’ve had that as standard for a good decade here. You can also fairly easily make your own or use other people’s KWin scripts, which lets you manipulate the desktop however you want. Here’s some examples: https://store.kde.org/browse?cat=210&amp;ord=latest

    You can even download desktop effects, if you like your windows to burn down or have a glitch effect or whatever: https://store.kde.org/browse?cat=209&amp;ord=latest


    It takes some time to adjust, but welcome abord! Depending on how much you customize, you may find it difficult to go back to Windows!

  • DrJaska@sopuli.xyz
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    9 months ago

    I don’t know what “super resolution” actually means but if you’re on Xorg / X11 then you can set arbitrary scales for your monitors if you want a 1080p monitor to have 2 times as many virtual pixels than its native resolution then you can run xrandr --fb $((1920*2))x$((1080*2)) --output --pos 0x0 --mode 1920x1080 --scale 2x2 fb is the whole desktop size, increase it if you have multiple monitors. For finding out what ID you need to give for --output run xrandr without any arguments and try to recognize your monitors, or trial and error. Pos is position, if you have several monitors then your 2nd monitor should not be at 0x0 but somewhere like 1920x0 for example. Mode is the unscaled resolution you want to give the monitor, with scale 2x2 an actual 1920x1080 will be 3840x2160 virtually, your fb parameter needs to be configured WITH the SCALED size, not unscaled.

      • DrJaska@sopuli.xyz
        link
        fedilink
        arrow-up
        0
        ·
        9 months ago

        I don’t fully understand how upscaling low resolution would give better readability for many small windows on the same screen? I know Nvidia’s DLSS but isn’t that made for running games at a small resolution and stretching/upscaling that to fit a far bigger monitor?

          • DrJaska@sopuli.xyz
            link
            fedilink
            arrow-up
            0
            ·
            9 months ago

            the biggest problem is my second 1080p monitor I Super Resolution to fit more programs on it.

            Gotcha, DLSS/Super Resolution just don’t seem to fit the OP’s question at all though. The monitor scaling I replied with would allow to fit more windows on the monitor (though they will appear smaller as they’ll have less real screen space while having their old virtual screen space). I don’t understand at all how DLSS/Super Resolution would be related to that.