I don’t need anything special or pricey, just a basic controller that does basic controller things.

I’ve tried a few generic controllers, but they have issues with bluetooth, battery life, and automatically shutting off too early from idling.

Does anyone know of any generic controllers that don’t have these issues? I don’t mind if the battery life isn’t the same or better than official controllers, but they shouldn’t straight up lie about the capacity. It should be illegal.

  • commander@lemmings.worldOP
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    2
    ·
    11 hours ago

    Thanks for the advice.

    I’m using KDE with X11 on a laptop, so it’s probably not so easy for me to turn it of 🙁

    • chronicledmonocle@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      8 hours ago

      Why are you using X11 on Plasma? Wayland support has been great for a long time on Plasma and they’re working towards deprecating X11.

    • IceFoxX@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      10 hours ago

      https://wiki.archlinux.org/title/Gamepad#Disable_touchpad_acting_as_mouse
      and

      • xorg.conf entries
      Section "InputClass"
              Identifier "joystick catchall"
              MatchIsJoystick "on"
              MatchDevicePath "/dev/input/event*"
              Driver "joystick"
              Option "StartKeysEnabled" "off" # Disable mouse support of joypad 
              Option "StartMouseEnabled" "off"
      EndSection
      

      "You’d need to replace/add the MatchProduct directive in your xorg config file with something like this to disable the touchpad:

      MatchProduct "Wireless"
      MatchProduct "Controller|Adaptor"
      MatchProduct "Touchpad"