aboutsummaryrefslogblamecommitdiff
path: root/bash/bash_profile.d/fortune.bash
blob: dd054192a5d1e293b8a11a434e5cc064ae2c3030 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                                       
                                                         
               

      
# 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
    fortune -sn "${FORTUNE_MAXSIZE:-768}" "$FORTUNE_PATH"
    printf '\n'
) ; fi