aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/remind.sh
blob: 1c92b584e3b7bff7403b3229bcb010e211bcc919 (plain) (blame)
1
2
3
4
5
6
# Show reminders on login
if command -v remind >/dev/null 2>&1 && [ -f "$HOME"/.reminders ] ; then
    printf '\n'
    remind "$HOME"/.reminders
fi