aboutsummaryrefslogtreecommitdiffstats
path: root/.zlogin
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2023-05-23 09:15:04 +0200
committerDavid Runge <dave@sleepmap.de>2023-05-23 09:15:04 +0200
commitd59b574b67e36ec5420cfedcbf489d9184b3a691 (patch)
tree3ad0aadc6f3a3166d8ccb99053b8260d8258f647 /.zlogin
parent2fc5cf9f7eece3d993c3eba526ba5d04819b81ac (diff)
downloaddotfiles-d59b574b67e36ec5420cfedcbf489d9184b3a691.tar.gz
dotfiles-d59b574b67e36ec5420cfedcbf489d9184b3a691.tar.bz2
dotfiles-d59b574b67e36ec5420cfedcbf489d9184b3a691.tar.xz
dotfiles-d59b574b67e36ec5420cfedcbf489d9184b3a691.zip
zsh: move configs to XDG_CONFIG_HOME with the help of ZDOTDIR
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
-