diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-16 18:28:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-16 18:28:38 -0300 |
commit | cf08643c9cb94be54cfbb461d1404308a3bf3a16 (patch) | |
tree | fdb267c196a05f8a57cdb93e30a0ebd9483b9766 | |
parent | 3fcde8df5a7315a22922879e671cf0888887327b (diff) | |
download | scripts-cf08643c9cb94be54cfbb461d1404308a3bf3a16.tar.gz scripts-cf08643c9cb94be54cfbb461d1404308a3bf3a16.tar.bz2 |
Check for remind
-rwxr-xr-x | status | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ function status_run { cd # Check your reminders - if [ -e "$HOME/.reminders" ]; then + if which remind &> /dev/null && [ -e "$HOME/.reminders" ]; then remind ~/.reminders | grep -v '^No reminders.$' fi |