From: Simon Ruderich Date: Wed, 5 Jan 2011 17:42:50 +0000 (+0100) Subject: zsh/rc: Run rem with -h (hush) to prevent unnecessary output. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=172be2cd115af1c480d58703de8327eddf2c62c4;p=config%2Fdotfiles.git zsh/rc: Run rem with -h (hush) to prevent unnecessary output. --- diff --git a/zsh/rc b/zsh/rc index dc797dc..8da458d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -640,7 +640,7 @@ done &) # Run reminder and redisplay it every four hours (if it's available). PERIOD=14400 periodic() { - which rem > /dev/null && rem + which rem > /dev/null && rem -h }