#!/bin/sh [ -f /proc/acpi/ibm/led ] || exit $NA case "$1" in thaw|resume) echo "7 blink" >/proc/acpi/ibm/led ;; *) ;; esac exit $NA