We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add $USER to input
ls -l /dev/input/*
chmod a+rw /dev/input/event0
KERNEL=="event[0-9]*", ATTRS{idVendor}=="045e", MODE:="0666", SYMLINK+="xbox"
The text was updated successfully, but these errors were encountered:
Or maybe a better option: just add the user to the input group: sudo adduser ubuntu input (and then log out/in again)
input
sudo adduser ubuntu input
The reason why is we need access to /dev/input/event*, in addition to the js* devices. The event* are in the input group by default.
/dev/input/event*
(all credit to @Achllle for debugging this with me)
Sorry, something went wrong.
apollokit
No branches or pull requests
input group option
add $USER to input
modify dev permissions directly
ls -l /dev/input/*
chmod a+rw /dev/input/event0
or whatever corresponds to the event joystickKERNEL=="event[0-9]*", ATTRS{idVendor}=="045e", MODE:="0666", SYMLINK+="xbox"
The text was updated successfully, but these errors were encountered: