From 74e9edd1063220be05ea1d9d430cdf430dac09f9 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 2 May 2011 04:04:34 +0200 Subject: [PATCH] zsh/rc: Only run rem if ~/.reminders exists. --- zsh/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/rc b/zsh/rc index a59bf29..f38761f 100644 --- a/zsh/rc +++ b/zsh/rc @@ -649,7 +649,7 @@ done &) # Run reminder and redisplay it every four hours (if it's available). PERIOD=14400 periodic() { - which rem > /dev/null && rem -h + which rem > /dev/null && [ -f ~/.reminders ] && rem -h } -- 2.44.2