Last active
November 3, 2019 17:23
-
-
Save madprops/86812770e2273d1976c1a2ab0a594205 to your computer and use it in GitHub Desktop.
This maps some buttons of generic usb snes controllers to F keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run with root privileges | |
product_id="D015" | |
product_id_o="d015" | |
vendor_id="12BD" | |
vendor_id_o="12bd" | |
cat - <<UDEV_RULESET > /etc/udev/rules.d/10-usb-snes.rules | |
ACTION=="add|change", KERNEL=="event[0-9]*", ATTRS{idVendor}=="${vendor_id_o}",ATTRS{idProduct}=="${product_id_o}", ENV{ID_INPUT_KEYBOARD}="1" | |
UDEV_RULESET | |
cat - <<EVDEV_RULESET > /etc/udev/hwdb.d/60-usb-snes.hwdb | |
evdev:input:b*v${vendor_id}p${product_id}* | |
KEYBOARD_KEY_90001=f13 | |
KEYBOARD_KEY_90002=f14 | |
KEYBOARD_KEY_90003=f15 | |
KEYBOARD_KEY_90004=f16 | |
EVDEV_RULESET | |
systemd-hwdb update | |
# Add a line in bashrc to load this file | |
cat - <<PROFILE_SCRIPT > /home/yo/scripts/snes_profile.sh | |
xmodmap -e "keycode 191 = F13" | |
xmodmap -e "keycode 192 = F14" | |
xmodmap -e "keycode 193 = F15" | |
xmodmap -e "keycode 194 = F16" | |
PROFILE_SCRIPT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After this, reconnect the controller and login again. You should be able to bind stuff to F13, F14, F15, and F16. The Select, Start, R and L buttons should be easy enough to add, but I don't use them. The D-Pad seems a bit more complicated.