Last active
October 31, 2024 00:06
-
-
Save pubkey/dd5f239737bb7a2c4dc17847a15fc8a1 to your computer and use it in GitHub Desktop.
Corsair Gaming VOID Headset on Linux
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
# 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 headset 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
Update: I fixed the issue for Ubuntu 20.04
Here is how:
I did not need to modify any files or create any bash scripts. I contacted Corsair customer support who walked me through a hard reset of my gaming dongle:
You can test the speakers within the sound settings to make sure they work. I restarted my computer, and turned off and on my headset to make sure that everything still works. I hope this helps!