Last active
August 6, 2026 00:27
-
-
Save jamesasu/1d7c6170cb5c5193b0753de37516147b to your computer and use it in GitHub Desktop.
On linux, allow the device to wake from USB (keyboard, mouse)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo nano /etc/udev/rules.d/90-usb-wakeup.rules | |
| # Then enter the value: | |
| ACTION=="add", SUBSYSTEM=="usb", ATTR{power/wakeup}="enabled" | |
| # Save, exit and then run: | |
| sudo udevadm control --reload-rules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment