You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arch-rice/local-binaries/toggle-superspeed-mode

16 lines
300 B
Bash

#!/bin/sh
state="$(cat /proc/acpi/ibm/fan | grep level | awk -F' ' '{print $2}' | head -n 1)"
echo $state
if [ state="auto" ]; then
echo "level full-speed" > /proc/acpi/ibm/fan
fi
if [ state="disengaged" ]; then
echo "level auto" > /proc/acpi/ibm/fan
fi
echo "level auto" > /proc/acpi/ibm/fan