Add refined check

This commit is contained in:
Infinite 2024-10-26 15:18:08 -07:00
parent 696110eae5
commit 406f2ad91a

View File

@ -45,7 +45,7 @@ configureAutoCpufreq() {
if command_exists auto-cpufreq; then if command_exists auto-cpufreq; then
# Check if the system has a battery to determine if it's a laptop # Check if the system has a battery to determine if it's a laptop
if [ -d /sys/class/power_supply/BAT0 ]; then if ls /sys/class/power_supply/BAT* >/dev/null 2>&1; then # Check if the system has a battery (laptop) by looking for any battery directory
printf "%b\n" "${GREEN}System detected as laptop. Updating auto-cpufreq for laptop...${RC}" printf "%b\n" "${GREEN}System detected as laptop. Updating auto-cpufreq for laptop...${RC}"
"$ESCALATION_TOOL" auto-cpufreq --force powersave "$ESCALATION_TOOL" auto-cpufreq --force powersave
else else