From 0303a854e68c96656343a05746e4618af2572519 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 26 May 2018 16:32:18 -0300 Subject: Be case insensitive for empty reminders result check --- status | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status b/status index 3ac97d8..5e647d9 100755 --- a/status +++ b/status @@ -72,7 +72,7 @@ function status_run { # Check your reminders if which remind &> /dev/null && [ -e "$HOME/.reminders" ]; then - remind ~/.reminders | grep -v '^No reminders.$'# | tr '[:upper:]' '[:lower:]' + remind ~/.reminders | grep -iv '^no reminders.$' # | tr '[:upper:]' '[:lower:]' fi # Update your mrconfig and check all registered repositories -- cgit v1.2.3