Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # CHANGE 73rn2gj6.default to your profile
  4. # If you want to play some sound check the mpg123 below
  5. # if ou use some other notification method change the notify-send below
  6.  
  7. PREV_EMAILS=99999
  8.  
  9. while [ true ]; do
  10.  
  11. EMAILS=`grep 'X-Mozilla-Status: 0000' ~/.thunderbird/73rn2gj6.default/Mail/imap.planeta.inf.br/Inbox | wc -l`
  12.  
  13. if [ $EMAILS -ne 0 ]; then
  14. notify-send --icon thunderbird "E-mail notification" "Unread e-mail count: ${EMAILS}"
  15. fi
  16.  
  17. if [ $EMAILS -ne $PREV_EMAILS ]; then
  18. mpg123 ~/Música/aol.mp3
  19. PREV_EMAILS=$EMAILS
  20. fi
  21.  
  22. sleep 600
  23. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement