Skip to content

Commit e89576d

Browse files
committed
Update
1 parent f4b0827 commit e89576d

File tree

2 files changed

+56
-3
lines changed

2 files changed

+56
-3
lines changed

docs/Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ permalink: /changelogs
77

88
# Changelogs
99

10+
11+
{: .important-title }
12+
> GN-45_Version 77    Nov 01, 2025
13+
> * Russian translation: credits a1ex-ak and ai
14+
> * Support for Acer Predator and Nitro. credits: LFd3v
15+
1016
{: .important-title }
1117
> GN-45_Version 76    Sep 15, 2025
1218
> * French translation: credits p-sage

docs/Device-Compatibility/Acer.md

Lines changed: 50 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,22 @@ permalink: /device-compatibility/acer
2626

2727
## Dependencies
2828
Depends on separate kernel module `acer-wmi-battery`, that need to be installed.<br>
29+
30+
{: .note }
31+
Update: Acer now offers three optional kernel modules for different laptop model groups. Please review all three links and determine which one matches your specific laptop model.
32+
2933
<https://github.com/frederik-h/acer-wmi-battery>
34+
<br>
35+
<https://github.com/maxco2/acer-battery-wmi>
36+
<br>
37+
<https://github.com/PXDiv/Div-Linuwu-Sense> For Predator / Nitro models.
38+
3039

3140
{: .note }
32-
`acer-wmi-battery` module is supported by a third party and this extension/author is not in any way responsible for the kernel module installation, bugs or damages.
41+
Kernel module is supported by a third party and this extension/author is not in any way responsible for the kernel module installation, bugs or damages.
3342

3443
## Testing charging threshold using command-line
35-
After installing `acer-wmi-battery` below sysfs path will be available and charging threshold/mode can be changed.
44+
After installing kernel module below sysfs path will be available and charging threshold/mode can be changed.
3645
Now user will be able to set charging threshold, using commandline and test charging behavior.
3746
Charging mode can be set by using `echo` command in `terminal`.
3847
<br>
@@ -42,24 +51,62 @@ To turn on **Battery Limit charge**
4251

4352
Require root privileges
4453
{: .label .label-yellow .mt-0}
54+
55+
56+
acer-battery-wmi frederik-h and maxco2 kernel module
4557
```bash
4658
echo '1' | pkexec tee /sys/bus/wmi/drivers/acer-wmi-battery/health_mode
59+
```
60+
<br>
61+
PXDiv/Div-Linuwu-Sense Nitro
62+
```bash
63+
echo '1' | pkexec tee /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/nitro_sense/battery_limiter
64+
```
65+
<br>
66+
PXDiv/Div-Linuwu-Sense Predator
67+
```bash
68+
echo '1' | pkexec tee /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/predator_sense/battery_limiter
69+
4770
```
4871
<br>
4972

5073
To turn off **Battery Limit charge**
5174

5275
Require root privileges
5376
{: .label .label-yellow .mt-0}
77+
78+
acer-battery-wmi frederik-h and maxco2 kernel module
5479
```bash
5580
echo '0' | pkexec tee /sys/bus/wmi/drivers/acer-wmi-battery/health_mode
5681
```
5782
<br>
83+
PXDiv/Div-Linuwu-Sense Nitro
84+
```bash
85+
echo '0' | pkexec tee /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/nitro_sense/battery_limiter
86+
```
87+
<br>
88+
PXDiv/Div-Linuwu-Sense Predator
89+
```bash
90+
echo '0' | pkexec tee /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/predator_sense/battery_limiter
91+
```
92+
<br>
5893
`sudo` also can be used in place of `pkexec` in the above commands as both `sudo` and `pkexec` can be use to run commands in root mode. To make use of polkit rules, the extension uses `pkexec`.
5994

6095
The current threshold value can also be read using `cat` command in `terminal`.
96+
97+
acer-battery-wmi frederik-h and maxco2 kernel module
98+
```bash
99+
cat /sys/bus/wmi/drivers/acer-wmi-battery/health_mode
100+
```
101+
<br>
102+
PXDiv/Div-Linuwu-Sense Nitro
103+
```bash
104+
cat /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/nitro_sense/battery_limiter
105+
```
106+
<br>
107+
PXDiv/Div-Linuwu-Sense Predator
61108
```bash
62-
cat /sys/bus/wmi/drivers/acer-wmi-battery/health_mode
109+
cat /sys/module/linuwu_sense/drivers/platform:acer-wmi/acer-wmi/predator_sense/battery_limiter
63110
```
64111
<br>
65112

0 commit comments

Comments
 (0)