#!/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." start() { if [ "${RC_CMD}" = "restart" ]; then /usr/bin/nmcli radio all off fi /usr/bin/intel_reg write 0x00061254 0x8bb7b16dc5b6a 2>/dev/null } stop() { /usr/bin/nmcli radio all off }