From 163a1f93992820d9e8a330c41b32fb329b58e7bb Mon Sep 17 00:00:00 2001 From: Adnan Hodzic Date: Thu, 5 Sep 2024 07:33:06 +0200 Subject: [PATCH] Add reference to post install configuration --- auto_cpufreq/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auto_cpufreq/core.py b/auto_cpufreq/core.py index 21ad7c47..b51d55df 100755 --- a/auto_cpufreq/core.py +++ b/auto_cpufreq/core.py @@ -295,6 +295,8 @@ def footer(l=79): print("\n" + "-" * l + "\n") def deploy_complete_msg(): print("\n" + "-" * 17 + " auto-cpufreq daemon installed and running " + "-" * 17 + "\n") print("To view live stats, run:\nauto-cpufreq --stats") + print("\nauto-cpufreq makes all decisions automatically, if you would like to") + print("configure certain setting to your own liking, please refer to:\nhttps://github.com/AdnanHodzic/auto-cpufreq#configuring-auto-cpufreq") print("\nTo disable and remove auto-cpufreq daemon, run:\nsudo auto-cpufreq --remove") footer()