MOUSE-UDEV(1)marcp.xyzMOUSE-UDEV(1)

NAME

mouse-udev - USB access for the mouse software

DESCRIPTION

G-Wolves Mouse udev Rule

NOTES

The web-based software only works in chromium based browsers. No Firefox sadly.

Credit: Reddit post by u/MouseReview community

EXAMPLES

To access G-Wolves mouse settings through their web-based software on Linux, you need to create a udev rule that allows your user to access the USB receiver.

Step 1: Identify your mouse's Vendor ID and Product ID

$ lsusb

Look for a line containing "G-Wolves". Example output:

Bus 003 Device 003: ID 33e4:3717 G-Wolves G-Wolves Fenrir Max 8K Wireless Mouse-N

In this example: 33e4 is the Vendor ID, 3717 is the Product ID

Step 2: Create the udev rule

$ sudo vim /etc/udev/rules.d/70-g-wolves.rules

Step 3: Add the rule content

Paste this line, replacing the IDs with your mouse's values:

SUBSYSTEMS=="usb", ATTRS{idVendor}=="33e4", ATTRS{idProduct}=="3717", MODE="0660", TAG+="uaccess"

Step 4: Apply the changes

$ sudo reboot

SEE ALSO

mouse-accel(1), gwolves-battery(1)

marcp.xyz2023-10-31MOUSE-UDEV(1)