Skip to content

Instantly share code, notes, and snippets.

@azazeal
Forked from pubkey/corsair_headset_linux.bash
Created April 18, 2017 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azazeal/888211b7c2467059b450e45061c74d3f to your computer and use it in GitHub Desktop.
Save azazeal/888211b7c2467059b450e45061c74d3f to your computer and use it in GitHub Desktop.
Corsair Gaming VOID Headset on Linux
# Corsair headsets will stuck the apps on your linux system. This is due to wrong usb-mapping.
# thx to http://www.c0urier.net/2016/corsair-gaming-void-usb-rgb-linux-fun
# 1. open terminal
# 2. type this and search the line with your headset
lsusb
#Get the USB ID of the mouse and add it to xorg.conf:
sudo nano /etc/X11/xorg.conf
#in my case it looks like this:
Section "InputClass"
Identifier "Corsair"
MatchUSBID "1b1c:1b2a" <---- replace the id with yours
Option "StartKeysEnabled" "False"
Option "StartMouseEnabled" "False"
EndSection
# restart system
shutdown -r now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment