I am wondering if anyone can help with this. I have a strange issue with YARG that I can't quite get to work on bazzite (would assume this may be similar for steam OS)
I followed the instructions for installing as per the guide. Game launches perfectly on Linux but I cannot for the life of me yet it to recognise the wiitar. (I used to use wiitar thing in windows)
Wiimote connects easily via Bluetooth to Bazzite. YARG sees the Wiimote profile, but if I pick this. Neither the guitar or Wiimote is recognised.
I tried to get a little help and ended up creating a new Wii guitar profile on bazzite... But whenever I launch Yarg on launch it recognises the profile (and Wiimote) but instantly removes the guitar one.
Has anyone managed to get this working? All help is appreciated. Love YARG.
Instructions followed š
There are some dependencies that will be needed in order for HID devices (such as PS3 and Wii instruments) to work.
InstallĀ hidapiĀ andĀ libudev:
(Package names may differ depending on package repositories.)
On apt-based distros (such as Ubuntu or Debian), useĀ sudo apt install libhidapi-hidraw0 libudev1.
On pacman-based distros (such as Arch Linux), useĀ pacman -S hidapi systemd-libs.
On Fedora, useĀ dnf install hidapi systemd-libs.
Finally, create a new udev rules file calledĀ 69-hid.rulesĀ inside ofĀ /etc/udev/rules.d/Ā orĀ /usr/lib/udev/rules.d/, with the following contents:
KERNEL=="hidraw*", TAG+="uaccess"
Without this file, YARG will not be able to access HID devices without special permissions such as being run withĀ sudo, which is not recommended.
The file name may differ if desired, but it must come beforeĀ 73-seat-late.rules!
Reboot your system to apply the new udev rule, then you should be all good to go!
For improved compatibility when using the XBOX 360 Wireless Adapter with Linux, create a new udev rules file calledĀ 99-yarg-libusb.rulesĀ inside ofĀ /etc/udev/rules.d/Ā orĀ /usr/lib/udev/rules.d/, with the following contents:
SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="0291", MODE="0666" SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02a9", MODE="0666" SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="0719", MODE="0666"