39
[Weekly thread] GNU+Linux help: ask anything!
(programming.dev)
A community for everything relating to the linux operating system
Also check out !linux_memes@programming.dev
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
I have figured out how to set up a shortcut to suspend my desctop! (yeah rookie here). My issue is, that it wakes up, whenever someone walks past it. Is there a way to define what wakes my PC (more mouse movement, maybe disable the mouse from waking it?)
Interesting! After a search, I can say that apparently you need to config the "file"
/proc/acpi/wakeup
. However, some claimed the change wouldn't persist (makes sense to me). I wonder if there's a distro specific setting for this... Else, you'd need to write some script for init.d or systemd..!Oh. If you have systemd, you have udev. Then, you want to do the opposite to https://wiki.archlinux.org/title/Udev#Waking_from_suspend_with_USB_device (see last block in the section, tells you to add that content to the rule 50-*, switches to "enabled" simply put "disabled" instead). Sorry for linking to advanced docs. Hope you can make it and it really work out! Another option would be trying to install
powertop
, it has many switches but it's graphical and iirc had something to turn USB off... This approach would be more of a last resort, it's a bit of a hack to address your needs. Dunno if it would really work..!