this post was submitted on 04 Oct 2024
23 points (96.0% liked)

Linux

47557 readers
691 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
 

Hello Linux community,

I need some help with shutting down my laptop when the battery reaches a low percentage.

I am using Debian 12 with the GNOME desktop. WARNING: Minimal installation with self selected packages.

What I want to achieve is, that the laptop just does a 'halt -p' or shuts itself down when the battery is below 20%.

What I did so far:

  • Look into GNOME settings in the power settings area and I found nothing helpful
  • I edited /etc/Upower/UPower.conf with my settings and changed the CriticalPowerAction to PowerOff, ensured the upower daemon is running via systemctl status and rebooted. The result was that I get a warning popup message in GNOME when the battery load reaches 21%, but it does not shutdown the laptop at 20% or under 20%, although I get another pop up announcing that the laptop would be shutdown
  • I ensured laptop-mode-tools and gnome-power-manager settings are installed

Any help/pointers for further help would be highly appreciated.

all 7 comments
sorted by: hot top controversial new old
[–] dvb@lemmy.ml 8 points 11 hours ago* (last edited 11 hours ago)

ArchWiki: Hibernate on low battery level

This approach uses udev, so you don't have to constantly check the battery level by yourself.

[–] fushuan@lemm.ee 5 points 12 hours ago (1 children)

A bash script that checks the battery and if its below X runs shutdown -now ?

Then run it every minute with cron.

It's not very elegant but it would work.

[–] wolf@lemmy.zip 1 points 12 hours ago (1 children)

Thanks, that would be a valid approach and my last resort.

As you said, I hope someone knows a more elegant solution, though!

[–] fushuan@lemm.ee 3 points 11 hours ago

It's also not dependant on any DE tool and won't fuck up with any update that resets gnome configs. Trusty cron will prevail.

With proper directory management I wouldn't call it that inelegant tbh.

[–] eugenia@lemmy.ml 4 points 9 hours ago (1 children)

Answer is here, it was posted the other day: https://lemmy.ml/post/20903038 Instead of beeping as that script does, you shut the PC down.

[–] wolf@lemmy.zip 1 points 8 hours ago

Thanks, this would indeed solve my problem. Still hoping for a better solution, but if everything else fails I'll utilize it!