#!/bin/bash
#Blink the thinklight 3 times.
DELAY=100000    	#microseconds.
cd /proc/acpi/ibm
sudo chmod 666 light
for ((i=0; i<3; i++)) ; do
	echo -n "on" > light ; usleep $DELAY ; echo -n "off" > light; usleep $DELAY
done
