Quote:
Originally Posted by hius07
Will it be useful to add monitoring wirelessEnableChanged event?
|
It should be easy to modify the script to log any event you want.
Just add the correct event source (separated by /n) to the SOURCES variable and include the event in the lipc-wait event list.
You can also monitor all events in the system, but that might cause exessive flash wear:
Code:
lipc-probe -l | lipc-wait-event -m -l "*" | while read event; do
echo [`date`] $event > /mnt/us/events.log
done