#!/sbin/openrc-run # Copyright 2018 Robert Alessi # Distributed under the terms of the GNU General Public License v2 description="Removes whining noise from Thinkpads X200 and powers off the wifi on shutdown." command="/usr/bin/intel_reg" pwmfreq="${PWMFREQ_RATE}" command_args="write 0x00061254 $pwmfreq" start() { if [ "${RC_CMD}" = "restart" ]; then /usr/bin/nmcli radio all off fi exec $command $command_args 2>/dev/null } stop() { /usr/bin/nmcli radio all off }