#!/bin/sh ############################################################################# # Mail notification for thunderbird and yamb, using the gnome notifier system ############################################################################# subject="$1" sender="$2" recipients="$3" size="$4" folder="$5" accountType="$6" #(movemail, pop3, imap, nntp, rss) accountName="$7" body="$8" # Show notify (using notify-send) # -i=/usr/share/pixmaps/mozilla-thunderbird.svg notify-send "Courriel de $sender" $subject # Play sound aplay "/usr/share/sounds/pop.wav" # Switch on the ASUS led for one minute (60 second) echo 1 > /proc/acpi/asus/mled sleep 60 echo 0 > /proc/acpi/asus/mled