Software
You can configure your URX Core M1 mouse using the URX HUB software.
- URX HUB Web Driver: hub.urx.co.in
- URX HUB Offline App: Download from GitHub Releases
The software works on all operating systems (Windows, macOS, Linux).
Note
- The software supports Wired, 2.4GHz and Bluetooth.
Linux Users
On most Linux distributions, you need to configure udev rules to grant permissions to access the mouse. Run this in your terminal:
cat << 'EOF' | sudo tee /etc/udev/rules.d/50-urx-hub.rules > /dev/null && \
sudo udevadm control --reload-rules && \
sudo udevadm trigger --subsystem-match=hidraw
# URX Core68 HE
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3151", ATTRS{idProduct}=="5029", MODE:="0660", TAG+="uaccess"
# URX Core68 Update Mode
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3151", ATTRS{idProduct}=="502a", MODE:="0660", TAG+="uaccess"
# URX Core75
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="36b0", ATTRS{idProduct}=="3130", MODE:="0660", TAG+="uaccess"
# URX Core75 2.4G
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="36b0", ATTRS{idProduct}=="3002", MODE:="0660", TAG+="uaccess"
# URX Core M1 Wired
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3151", ATTRS{idProduct}=="5043", MODE:="0660", TAG+="uaccess"
# URX Core M1 2.4G
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3151", ATTRS{idProduct}=="5045", MODE:="0660", TAG+="uaccess"
# URX Core M1 Bluetooth
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3151", ATTRS{idProduct}=="503c", MODE:="0660", TAG+="uaccess"
EOF