Skip to content

Instantly share code, notes, and snippets.

@LAGonauta
Created January 30, 2026 01:48
Show Gist options
  • Select an option

  • Save LAGonauta/5b7ffc2dbbadda93f7abe0ca450295df to your computer and use it in GitHub Desktop.

Select an option

Save LAGonauta/5b7ffc2dbbadda93f7abe0ca450295df to your computer and use it in GitHub Desktop.
Getting DolphinBar to work on Linux
# From https://www.reddit.com/r/DolphinEmulator/comments/md0di3/how_to_get_dolphinbar_to_work_on_ubuntu/
> BlueSwordM:
> To connect your Mayflash GC Adapter and Dolphin Bar on Linux, do this:
>
> ```shell
> touch /etc/udev/rules.d/51-gcadapter.rules
> sudo nano /etc/udev/rules.d/51-gcadapter.rules
> ```
>
> ```
> #GameCube Controller Adapter
> SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0337", TAG+="uaccess"
>
> #Wiimotes or DolphinBar
> SUBSYSTEM=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0306", TAG+="uaccess"
> SUBSYSTEM=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0330", TAG+="uaccess"
> ```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment