Skip to content

Disable wake up on mouse event

  1. List USB devices with waking up enabled
    • grep . /sys/bus/usb/devices/*/power/wakeup | grep enabled
  2. Find mouse by removing USB receiver and reexecuting command
  3. Disable wake up on mouse move
    • sudo su
    • echo disabled > /sys/bus/usb/devices/1-3/power/wakeup
    • replace 1-3 with listed number of grep command
  4. Disable wake up on mouse move permanently
    • sudo crontab -e
    • Add @reboot echo disabled > /sys/bus/usb/devices/1-3/power/wakeup
    • replace 1-3 with listed number of grep command

Sources