linuxOS_AP05/debian/test/usr/lib/pm-utils/sleep.d/95led

19 lines
305 B
Plaintext
Raw Normal View History

2025-09-26 01:40:02 +00:00
#!/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
exit 0