Skip to content

Instantly share code, notes, and snippets.

@Runinterface
Last active August 13, 2024 17:11
Show Gist options
  • Save Runinterface/ac82e7244509d2edf3489134dd62f552 to your computer and use it in GitHub Desktop.
Save Runinterface/ac82e7244509d2edf3489134dd62f552 to your computer and use it in GitHub Desktop.
# Linux Mint or Ubuntu/Debian
# vim /etc/udev/rules.d/99-dualsense-controllers.rules
# udevadm control --reload-rules
# sudo modprobe hid-playstation
# sudo vim /etc/bluetooth/input.conf and set ClassicBondedOnly=false
# systemctl restart bluetooth
#PS5 DualSense controller over USB hidraw
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
#PS5 DualSense controller over bluetooth hidraw
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess
#Arch Linux
modprobe hid-playstation
# vim /etc/modules-load.d/hid-playstation.conf
# add the following line to the file:
hid_playstation
# vim /etc/bluetooth/input.conf
# add the following line to the file:
UserspaceHID=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment