aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-02-10 10:43:26 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-02-10 10:43:26 +1300
commit1a6973ca212784d7a4777bedc978876c329637c9 (patch)
treeae1ed998968da8c5fc60a3fcfd28732d256b2ea3
parentDon't background remind(1) for timed reminders (diff)
downloaddotfiles-1a6973ca212784d7a4777bedc978876c329637c9.tar.gz
dotfiles-1a6973ca212784d7a4777bedc978876c329637c9.zip
Put asterisks in front of each remind(1) item
Just for readability to distinguish it from the rest of my login spiel. There might be a way to do this with remind(1) itself, but this will work OK.
-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 d0a18a5d..e3c82e40 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 -q "$HOME"/.reminders
+ remind -q "$HOME"/.reminders | sed 's/^/* /'
fi