aboutsummaryrefslogtreecommitdiffstats
path: root/.zlogin
diff options
context:
space:
mode:
Diffstat (limited to '.zlogin')
-rw-r--r--.zlogin22
1 files changed, 0 insertions, 22 deletions
diff --git a/.zlogin b/.zlogin
deleted file mode 100644
index 32f28cf..0000000
--- a/.zlogin
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# 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="${ZDOTDIR:-$HOME}/.zcompdump"
- if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
- zcompile "$zcompdump"
- fi
-} &!
-
-# Print a random, hopefully interesting, adage.
-if (( $+commands[fortune] )); then
- fortune -a
- print
-fi
-