10 lines
410 B
Bash
10 lines
410 B
Bash
# ~/.zlogin: Executed for LOGIN shells, AFTER .zshrc has loaded.
|
|
# Use for final tasks that require the full environment to be ready (e.g., welcome messages, mail checks).
|
|
# Rarely needed for standard configuration.
|
|
|
|
[[ -f $HOME/.zshrc.local ]] || touch $HOME/.zshrc.local
|
|
source $HOME/.zshrc.local
|
|
|
|
if [[ $FFENABLED != "false" ]] && command -v fastfetch >/dev/null; then
|
|
fastfetch --config examples/13
|
|
fi |