When I first installed the thumbleweed it was working (maybe because it came with windows settings? I have no idea) but then yesterday I think there was an update so It stopped holding laptop’s battery at 60 percent but just keep fulling. Is there any way to put a threshold on this model? I have seen TLP but i think it works only on thinkpad.
Thanks.
solved by this
A direct and simple solution to your problem would be this:
- Check if Ideapad_laptop kernel module is loaded (You don’t need to repeat this)
lsmod | grep ideapad_laptop
- To know the current status of conservation mode:
(If Output is 1 - conservation mode ON, 0 - conservation mode OFF)
cat /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
(You may have different name for “VPC2004:00” so check that by going to the folder “ideapad-acpi” by cd command and running ls there)
- Use following command to turn on/off the conservation mode : (1 - conservation ON, 0 -conservation OFF)
echo 1 | sudo tee /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
echo 0 | sudo tee /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
I am also having the same question
thanks for the solution