aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile.d/fortune.bash
blob: f3ef2be9d67fda52e6044484eceadf8ee5aeec95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# If interactive shell and fortune(6) installed, print a short fortune
if [[ $- == *i* ]] && hash fortune 2>/dev/null ; then (
    if [[ -d $HOME/.local/share/games/fortunes ]] ; then
        FORTUNE_PATH=${FORTUNE_PATH:-$HOME/.local/share/games/fortunes}
    fi
    printf '\n'
    fortune -sn "${FORTUNE_MAXSIZE:-768}" "$FORTUNE_PATH"
    printf '\n'
) ; fi