Print random quote after status on profile load
[khome.git] / home / .profile
... / ...
CommitLineData
1. $HOME/lib/login_variables.private.sh # Personal data variables
2
3unalias d 2> /dev/null || true # Defined by oh-my-zsh, but I want it for dict/fzf function.
4
5for file in $HOME/lib/login_*.sh
6do
7 . $file
8done
9
10umask 077
11
12if test ! "$SSH_AGENT_PID"
13then
14 eval "$(ssh-agent)"
15fi
16
17status
18
19printf '\n'
20
21awk \
22 -v RS='' \
23 'BEGIN {srand()} {fortunes[n++] = $0} END {print fortunes[int(n * rand())]}' \
24 ~/arc/doc/fortunes/orangebook_.txt \
25| fold -s
This page took 0.024563 seconds and 4 git commands to generate.