summaryrefslogtreecommitdiff
path: root/bin/email
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-01-22 16:52:03 +0000
committerUrbain Vaes <urbain@vaes.uk>2016-01-22 16:52:03 +0000
commite9c25ee0bbbf2f97c223d037b83b89915db63999 (patch)
tree0efe84fc2968d0ebc22f7c6d5098bb04e8c8a1aa /bin/email
parentfe054f7d5f4ffe6f6bf3121e821b7783c93d9ee2 (diff)
Add script to fetch email
Diffstat (limited to 'bin/email')
-rwxr-xr-xbin/email14
1 files changed, 5 insertions, 9 deletions
diff --git a/bin/email b/bin/email
index 1d51ef8..4261366 100755
--- a/bin/email
+++ b/bin/email
@@ -1,10 +1,6 @@
#! /usr/bin/env bash
-
-while true;
-do
- mbsync -a
- nmails=$(find $HOME/.mail -path '*/new/*' -type f | wc -l)
- [[ nmails -ge 1 ]] && notify-send -t 1 "New mail!"
- date
- sleep 5m
-done
+export DISPLAY=:0
+mbsync -a
+nmails=$(find $HOME/.mail -path '*/new/*' -type f | wc -l)
+[[ nmails -ge 1 ]] && /usr/bin/notify-send -t 1 "New mail!" || /usr/bin/notify-send -u low -t 1 "No new mail!"
+echo "Email last checked on $(date)".