Update README with new battery thresholds feature (#644)
* README: add battery threshold sections * README: link to version
This commit is contained in:
parent
1d7f12e846
commit
9b8e873145
29
README.md
29
README.md
|
@ -51,6 +51,9 @@ Example of `auto-cpufreq --stats` CLI output
|
||||||
* [Update - auto-cpufreq update](#update---auto-cpufreq-update)
|
* [Update - auto-cpufreq update](#update---auto-cpufreq-update)
|
||||||
* [Remove - auto-cpufreq daemon](#remove---auto-cpufreq-daemon)
|
* [Remove - auto-cpufreq daemon](#remove---auto-cpufreq-daemon)
|
||||||
* [stats](#stats)
|
* [stats](#stats)
|
||||||
|
* [Battery charging thresholds](#battery-charging-thresholds)
|
||||||
|
* [Supported Devices](#supported-devices)
|
||||||
|
* [Battery config](#battery-config)
|
||||||
* [Troubleshooting](#troubleshooting)
|
* [Troubleshooting](#troubleshooting)
|
||||||
* [AUR](#aur)
|
* [AUR](#aur)
|
||||||
* [Discussion](#discussion)
|
* [Discussion](#discussion)
|
||||||
|
@ -93,6 +96,7 @@ Only devices with an Intel, AMD, or ARM CPU are supported. This tool was develop
|
||||||
* CPU temperature in combination with CPU utilization/load (to prevent overheating)
|
* CPU temperature in combination with CPU utilization/load (to prevent overheating)
|
||||||
* System load
|
* System load
|
||||||
* Automatic CPU & power optimization (temporary and persistent)
|
* Automatic CPU & power optimization (temporary and persistent)
|
||||||
|
* Settings battery charging thresholds (limited support)
|
||||||
|
|
||||||
## Installing auto-cpufreq
|
## Installing auto-cpufreq
|
||||||
|
|
||||||
|
@ -465,6 +469,31 @@ If the daemon has been installed, live stats of CPU/system load monitoring and o
|
||||||
|
|
||||||
`auto-cpufreq --stats`
|
`auto-cpufreq --stats`
|
||||||
|
|
||||||
|
## Battery charging thresholds
|
||||||
|
|
||||||
|
As of [v2.2.0](https://github.com/AdnanHodzic/auto-cpufreq/releases/tag/v2.2.0), battery charging thresholds can be set in the config file. This enforces your battery to start and stop charging at defined values
|
||||||
|
|
||||||
|
### Supported devices
|
||||||
|
|
||||||
|
* **Lenovo ThinkPad** (thinkpad_acpi)*
|
||||||
|
* **Lenovo IdeaPad** (ideapad_acpi)*
|
||||||
|
|
||||||
|
***Please note, your laptop must have an installed ACPI kernel driver specific to the manufacturer.** To check if you have the correct module installed and loaded run `lsmod [module]`
|
||||||
|
|
||||||
|
**To request that your device be supported, please open an [issue](https://github.com/AdnanHodzic/auto-cpufreq/issues/new). In your issue, make us aware of the driver that works with your laptop**
|
||||||
|
|
||||||
|
### Battery config
|
||||||
|
Edit the config at `/etc/auto-cpufreq.conf`
|
||||||
|
|
||||||
|
Example config for battery
|
||||||
|
```
|
||||||
|
[battery]
|
||||||
|
enable_thresholds = true
|
||||||
|
start_threshold = 20
|
||||||
|
stop_threshold = 80
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
**Q:** If after installing auto-cpufreq you're (still) experiencing:
|
**Q:** If after installing auto-cpufreq you're (still) experiencing:
|
||||||
|
|
Loading…
Reference in New Issue