From e92b10f971733d89ce4b0a9ffc782c13114e1eee Mon Sep 17 00:00:00 2001 From: HurricanePootis <53066639+HurricanePootis@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:12:56 -0600 Subject: [PATCH] dist: add udev rule to enable user hidraw access (#12292) * dist: add udev rule to enable user hidraw access * dist: amend install instructions for udev rules * dist: change udev prefix prefix from 99 to 72 * dist: fix header typo for udev rule * Update dist/72-yuzu-input.rules shoutout to @liamwhite Co-authored-by: liamwhite * Update dist/72-yuzu-input.rules shout out to @liamwhite Co-authored-by: liamwhite * Update dist/72-yuzu-input.rules shout out to @liamwhite Co-authored-by: liamwhite * Update dist/72-yuzu-input.rules shout out to @liamwhite Co-authored-by: liamwhite * Update dist/72-yuzu-input.rules Co-authored-by: liamwhite * dist: add spdx header to udev rules * dist: change udev modes to 0660 * Update dist/72-yuzu-input.rules Co-authored-by: liamwhite * Update dist/72-yuzu-input.rules Co-authored-by: liamwhite --------- Co-authored-by: HurricanePootis Co-authored-by: liamwhite --- dist/72-yuzu-input.rules | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dist/72-yuzu-input.rules diff --git a/dist/72-yuzu-input.rules b/dist/72-yuzu-input.rules new file mode 100644 index 0000000000..d64f8b28d7 --- /dev/null +++ b/dist/72-yuzu-input.rules @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2023 yuzu Emulator Project +# SPDX-License-Identifier: GPL-2.0-or-later + +# Allow systemd-logind to manage user access to hidraw with this file +# On most systems, this file should be installed to /etc/udev/rules.d/72-yuzu-input.rules +# Consult your distro if this is not the case + +# 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" + +# Joy-Con L (Bluetooth) +KERNEL=="hidraw*", KERNELS=="*057e:2006*", MODE="0660", TAG+="uaccess" + +# Joy-Con R (Bluetooth) +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"