aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-02-07 09:21:50 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-02-07 09:21:50 +1300
commit839c8c1b36fa6b6d1188cfbdae589c8d892b0517 (patch)
tree560188928d57e1dfdcb5d25ee338a10e0e8e8a54 /sh/profile.d
parentTrying out Wyrd, moving away from Google Calendar (diff)
downloaddotfiles-839c8c1b36fa6b6d1188cfbdae589c8d892b0517.tar.gz
dotfiles-839c8c1b36fa6b6d1188cfbdae589c8d892b0517.zip
Add remind script
Need to work out if the sed(1) call is actually required, or if remind(1) does actually allow controlling the format of output at all
Diffstat (limited to 'sh/profile.d')
-rw-r--r--sh/profile.d/remind.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/profile.d/remind.sh b/sh/profile.d/remind.sh
index 1c92b584..bb7dabeb 100644
--- a/sh/profile.d/remind.sh
+++ b/sh/profile.d/remind.sh
@@ -1,6 +1,6 @@
# Show reminders on login
if command -v remind >/dev/null 2>&1 && [ -f "$HOME"/.reminders ] ; then
printf '\n'
- remind "$HOME"/.reminders
+ remind "$HOME"/.reminders | sed /^$/d
fi