prezto/runcoms/zlogin

27 lines
653 B
Plaintext
Raw Normal View History

#
# Executes commands at login post-zshrc.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Execute code that does not affect the current session in the background.
{
# Compile the completion dump to increase startup speed.
zcompdump="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompdump"
if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
2012-09-01 21:53:06 +00:00
zcompile "$zcompdump"
fi
} &!
2012-05-27 21:04:01 +00:00
# Execute code only if STDERR is bound to a TTY.
if [[ -o INTERACTIVE && -t 2 ]]; then
# Print a random, hopefully interesting, adage.
if (( $+commands[fortune] )); then
2013-07-06 16:28:53 +00:00
fortune -s
2014-05-07 14:57:21 +00:00
print
fi
fi >&2