From 86a26a8908426ba4a36b721289518def658ef2ad Mon Sep 17 00:00:00 2001 From: Angel-Karasu Date: Wed, 31 Jul 2024 13:08:57 +0200 Subject: [PATCH] Change command and message to auto reload config file --- auto_cpufreq/bin/auto_cpufreq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_cpufreq/bin/auto_cpufreq.py b/auto_cpufreq/bin/auto_cpufreq.py index ab4a8ba9..f05e79fd 100755 --- a/auto_cpufreq/bin/auto_cpufreq.py +++ b/auto_cpufreq/bin/auto_cpufreq.py @@ -23,7 +23,7 @@ @click.option("--remove", is_flag=True, help="Remove daemon for (permanent) automatic CPU optimizations") @click.option("--force", is_flag=False, help="Force use of either \"powersave\" or \"performance\" governors. Setting to \"reset\" will go back to normal mode") @click.option("--config", is_flag=False, required=False, help="Use config file at defined path") -@click.option("--reload", is_flag=True, help="Reload when the configuration has been modified") +@click.option("--config-reload", is_flag=True, help="Reload auto-cpufreq daemon to pick up changes made in auto-cpufreq config file") @click.option("--stats", is_flag=True, help="View live stats of CPU optimizations made by daemon") @click.option("--get-state", is_flag=True, hidden=True) @click.option("--completions", is_flag=False, help="Enables shell completions for bash, zsh and fish.\n Possible values bash|zsh|fish")