Disable wake up on mouse event
- List USB devices with waking up enabled
grep . /sys/bus/usb/devices/*/power/wakeup | grep enabled
- Find mouse by removing USB receiver and reexecuting command
- 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
- 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