this post was submitted on 07 Feb 2024
49 points (98.0% liked)

Linux

47361 readers
1202 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

It is incredibly annoying to me that my mouse wakes the computer when I barely touch it. If I want my PC to turn on, I press the Super key.

I find very hacky scripts online, I tried some but they didn't work. How did you disable it?

This option is missing from settings.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 7 months ago (2 children)

unfortunately, that doesn't work.

[–] [email protected] 3 points 7 months ago (2 children)

What system do you have? Laptop or desktop, if laptop which one, if desktop which mobo do you have? Check your bios for any sleep options, specifically S0 vs S3 standby.

S0 standby vs S3 standby can change things a lot. If you're in S3 standby then it's up to your bios/firmware to handle waking from sleep. If you're in S0 standby then your OS is in control.

[–] [email protected] 1 points 7 months ago

I'll check now, thanks!

[–] [email protected] 1 points 7 months ago* (last edited 7 months ago)

There was a setting in bios for wakeup. It was turned off. I turned it on but nothing changed.

[–] [email protected] 1 points 7 months ago* (last edited 7 months ago) (1 children)

Run cat /proc/acpi/wakeup and try some of the other devices instead of XHC0 if they are enabled

Edit: Remember to run sudo systemctl stop disable-mouse-wakeup to reset them if it doesn't work

[–] [email protected] 1 points 7 months ago* (last edited 7 months ago) (1 children)

Unfortunately, disabling the devices doesn't work.

RP01	  S4	*enabled   pci:0000:00:1c.0
RP05	  S4	*enabled   pci:0000:00:1c.4
RP06	  S4	*enabled   pci:0000:00:1c.5
LID0	  S3	*enabled   platform:PNP0C0D:00
PBTN	  S3	*enabled   platform:PNP0C0C:00

I had this device earlier but I disabled it with your systemctl service earlier and although I stopped the service, it didn't come back. Probably, it's back on next reboot. XHC S0 *enabled pci:0000:00:14.0

I didn't test LID0 or Powerbutton.

[–] [email protected] 4 points 7 months ago

Those wakelock devices map to specific devices. If you run lsusb you will see the pci:0000:00:1c.4 and others.

  • Find the one that your mouse is.
  • Do the echo command into that device RP05.
  • Confirm it's disabled.
  • suspend & then try moving the mouse
  • if it works edit the systemd script with the correct echo command
  • make sure you make the service Enabled (otherwise it won't start on boot)
  • reboot and confirm it's still disabled.

That should be what is needed to disable waking up from the mouse.