SHELL BYPASS 403 |
Modern UI.
Responsive.
Powerful.
#!/bin/sh
# On an IBM system. make the suspend LED blink.
# TODO: Merge with 95led? Should be trivial.
[ -f /proc/acpi/ibm/led ] || exit $NA
case "$1" in
hibernate|suspend)
echo "7 blink" >/proc/acpi/ibm/led
;;
thaw|resume)
echo "7 off" >/proc/acpi/ibm/led
;;
*) exit $NA
;;
esac