mirror of https://git.suyu.dev/suyu/suyu
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			835 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			835 B
		
	
	
	
		
			Plaintext
		
	
# 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-suyu-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"
 |