mirror of
https://github.com/AdnanHodzic/auto-cpufreq.git
synced 2025-07-27 15:44:16 +02:00
enable_tresholds config file improvements (Closes: #641)
This commit is contained in:
parent
3e8ee20117
commit
005b4aa178
@ -35,7 +35,8 @@ def battery_stop_threshold():
|
|||||||
def battery_setup():
|
def battery_setup():
|
||||||
root_check()
|
root_check()
|
||||||
conf = get_config()
|
conf = get_config()
|
||||||
if conf.has_option("battery", "enable_thresholds") and conf["battery"]["enable_thresholds"] == "true":
|
if conf.has_option("battery", "enable_thresholds"):
|
||||||
|
if conf["battery"]["enable_thresholds"] == "true":
|
||||||
if lsmod("thinkpad_acpi"):
|
if lsmod("thinkpad_acpi"):
|
||||||
thinkpad_setup(battery_start_threshold(), battery_stop_threshold())
|
thinkpad_setup(battery_start_threshold(), battery_stop_threshold())
|
||||||
elif lsmod("ideapad_acpi"):
|
elif lsmod("ideapad_acpi"):
|
||||||
@ -44,12 +45,15 @@ def battery_setup():
|
|||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
|
else:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def battery_get_thresholds():
|
def battery_get_thresholds():
|
||||||
conf = get_config()
|
conf = get_config()
|
||||||
|
if conf.has_option("battery", "enable_thresholds"):
|
||||||
if conf["battery"]["enable_thresholds"] == "true":
|
if conf["battery"]["enable_thresholds"] == "true":
|
||||||
print("-" * 30)
|
print("-" * 30 )
|
||||||
if lsmod("thinkpad_acpi"):
|
if lsmod("thinkpad_acpi"):
|
||||||
thinkpad_print_thresholds()
|
thinkpad_print_thresholds()
|
||||||
elif lsmod("ideapad_acpi"):
|
elif lsmod("ideapad_acpi"):
|
||||||
@ -58,3 +62,5 @@ def battery_get_thresholds():
|
|||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
return
|
return
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user