aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-02-10 10:41:53 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-02-10 10:41:53 +1300
commitecd072a5c25671833dff06c03ee3335ed24bc420 (patch)
treeed37a31645e04ceabf0fb84de033469809989e44 /sh
parentNo longer need to strip newlines from reminders (diff)
downloaddotfiles-ecd072a5c25671833dff06c03ee3335ed24bc420.tar.gz
dotfiles-ecd072a5c25671833dff06c03ee3335ed24bc420.zip
Don't background remind(1) for timed reminders
I might want this eventually, but for the moment I'm only using remind(1) for my daily login shell
Diffstat (limited to 'sh')
-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..d0a18a5d 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 -q "$HOME"/.reminders
fi