From 4425c32bd0ff710ab036a45eea66389e85a079ee Mon Sep 17 00:00:00 2001 From: purple wazard Date: Fri, 26 Apr 2024 10:34:21 -0500 Subject: [PATCH] formated --stats better with battery info --- auto_cpufreq/bin/auto_cpufreq.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_cpufreq/bin/auto_cpufreq.py b/auto_cpufreq/bin/auto_cpufreq.py index 1c41067..a9da8d9 100755 --- a/auto_cpufreq/bin/auto_cpufreq.py +++ b/auto_cpufreq/bin/auto_cpufreq.py @@ -144,7 +144,6 @@ def main(config, daemon, debug, update, install, remove, live, log, monitor, sta sys.exit() elif stats: not_running_daemon_check() - battery_get_thresholds() config_info_dialog() print('\nNote: You can quit stats mode by pressing "ctrl+c"') if os.getenv("PKG_MARKER") == "SNAP": @@ -153,6 +152,7 @@ def main(config, daemon, debug, update, install, remove, live, log, monitor, sta else: gnome_power_detect() tlp_service_detect() + brttery_get_thresholds() read_stats() elif log: deprecated_log_msg() @@ -163,8 +163,8 @@ def main(config, daemon, debug, update, install, remove, live, log, monitor, sta elif debug: # ToDo: add status of GNOME Power Profile service status config_info_dialog() - battery_get_thresholds() root_check() + battery_get_thresholds() cpufreqctl() footer() distro_info()