From 88336a433a53b5715ac48d8669101e0a4c0312c6 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 22 Mar 2023 11:53:08 +0100 Subject: [PATCH] bootstrap: Disable system USB mouse wakeups My (un-branded) usb mouse prevented the system from going into suspend/hibernation by sending intermittent wakeup signals. This system configuration option simply disables the device from sending those wakeup signals. Used with superuser stow installation method. --- .../system-packages/etc/udev/rules.d/usb-optical-mouse.rules | 1 + 1 file changed, 1 insertion(+) create mode 100644 bootstrap/system-packages/etc/udev/rules.d/usb-optical-mouse.rules diff --git a/bootstrap/system-packages/etc/udev/rules.d/usb-optical-mouse.rules b/bootstrap/system-packages/etc/udev/rules.d/usb-optical-mouse.rules new file mode 100644 index 0000000..1ce944b --- /dev/null +++ b/bootstrap/system-packages/etc/udev/rules.d/usb-optical-mouse.rules @@ -0,0 +1 @@ +ACTION=="add", SUBSYSTEM=="usb", DRIVERS=="usb", ATTRS{idVendor}=="0000", ATTRS{idProduct}=="3825", ATTR{power/wakeup}="disabled"