Battery manager to handle system performance modes and charge modes through acpi_calls (for some AMD models of Lenovo IdeaPad). There is also a handy applet for your system tray.
Similar to battmngr, but has been tested and confirmed to work on the following AMD models:
- IdeaPad 5 14ARE05 model 81YM. More information is available at the ArchWiki.
- IdeaPad 5 Pro 14ACN6 model 82L7. More information is available at the ArchWiki.
I have now built a separate branch that only includes the battery-related modes (Rapid Charge and Battery Conservation), as they should be more cross-compatible and may potentially work across Lenovo models with recent Intel CPUs too (testers welcome). An Arch package for this branch is available as a release here.
However, please have in mind that other Lenovo laptop models (especially Legion) have not been tested and are not expected to work with this script.
Note that the experimental branch of battmngr
may also work on these and/or other devices.
The original script requires the acpi_call
module loaded for your kernel.
- The Ruby applet also requires
ruby
andruby-gtk3
. - There is now a new applet available written in Python that you can try out thanks to @ervinpopescu - it requires
python
,pygtk
,python-gobject
. If you are using Wayland, you will probably have better luck with the Python one, otherwise see the relevant note below.
You can download the script, make it executable, and add it to your path. You can run it with sudo
, or you can install the supplied udev rule to make /proc/acpi/call writeable to all members of the wheel
group.
There is a pre-built package for Arch Linux available as a release, including PKGBUILD and .install files if you want to build it yourself. If you don't need the systray applet for whatever reason, use the older release. Note that the packages have not been re-built to include the new Python applet yet, but you can still download it separately and use it as is.
The applet icon used in the screenshot is preferences-system-power.svg
, part of Flatery Dark.
Syntax: ideapad-perf [OPTION] MODE
Options:
-h, --help see this help message
-p, --performance-mode set performance mode
-b, --battery-mode set battery mode
-c, --check verify both performance and battery mode
-vp, --verify-performance verify performance mode
-vb, --verify-battery verify battery mode
Valid performance modes:
ic, cooling Intelligent Cooling
ep, performance Extreme Performance
bs, battery Battery Saving
Valid battery modes:
rc, rapid Enable Rapid Charge (with Battery Conservation disabled)
bc, conserve Enable Battery Conservation (with Rapid Charge disabled)
off Disable both Rapid Charge and Battery Conservation
As noted elsewhere, it is possible to activate both Rapid Charge and Battery Conservation on Linux. However, as this configuration is not obtainable using official Lenovo software on Windows and it would defeat the purpose of the Battery Conservation, I have chosen to explicitly prevent this - choosing one of the options will disable the other one first. If for any reason you need to achieve this effect, you can do so manually via the commands provided in the ArchWiki.
When using the Python applet: It should just work (but let us know if it doesn't).
When using the Ruby applet: Wayland and most modern GUI toolkits do not like system tray applets. There are libraries that provide similar functionality, but the Ruby bindings for them are non-existent or outdated and difficult to build. For now, there is a simple workaround - pass GDK_BACKEND=x11
before starting the ideapad-perf-tray.rb
script, like so:
GDK_BACKEND=x11 ideapad-perf-tray.rb
See this issue for more information, as well as specific instructions on auto-starting the applet on KDE, courtesy of @Suspycat.
This project is licensed under the GPL-3.0 License.