14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
|
#
|
||
|
# Executes commands at login post-zshrc.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
|
# Print a random, hopefully interesting, adage.
|
||
|
if (( $+commands[fortune] )); then
|
||
|
fortune -a
|
||
|
print
|
||
|
fi
|
||
|
|