From 6ead429195ef12f35a5818eba6d76f54d5421cec Mon Sep 17 00:00:00 2001 From: deftdawg Date: Tue, 4 Feb 2025 23:05:52 +0000 Subject: [PATCH] Fix: Joycon udev rules not applying due to typo in dist/72-yuzu-input.rules (#106) Fixes - https://github.com/NixOS/nixpkgs/issues/374238 Without this Joycons are only detectable/usable when running yuzu/torzu as sudo/root (however sound does not work as sudo/root). Reviewed-on: http://vub63vv26q6v27xzv2dtcd25xumubshogm67yrpaz2rculqxs7jlfqad.onion/torzu-emu/torzu/pulls/106 Co-authored-by: deftdawg Co-committed-by: deftdawg --- dist/72-yuzu-input.rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/72-yuzu-input.rules b/dist/72-yuzu-input.rules index d64f8b28d..fec8e83ac 100644 --- a/dist/72-yuzu-input.rules +++ b/dist/72-yuzu-input.rules @@ -7,13 +7,13 @@ # Switch Pro Controller (USB/Bluetooth) KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess" -KERNEL=="hidraw*", KERNELS=="*057e:2009*", MODE="0660", TAG+="uaccess" +KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess" # Joy-Con L (Bluetooth) -KERNEL=="hidraw*", KERNELS=="*057e:2006*", MODE="0660", TAG+="uaccess" +KERNEL=="hidraw*", KERNELS=="*057E:2006*", MODE="0660", TAG+="uaccess" # Joy-Con R (Bluetooth) -KERNEL=="hidraw*", KERNELS=="*057e:2007*", MODE="0660", TAG+="uaccess" +KERNEL=="hidraw*", KERNELS=="*057E:2007*", MODE="0660", TAG+="uaccess" # Joy-Con Charging Grip (USB) KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="200e", MODE="0660", TAG+="uaccess"