Add fastfetch as motd of zsh

This commit is contained in:
2026-01-31 22:39:43 +01:00
parent 77d4a53df2
commit 2cad286227

View File

@@ -11,6 +11,14 @@
initContent = '' initContent = ''
# Use kitty's ssh helper if running inside kitty # Use kitty's ssh helper if running inside kitty
[ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh" [ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
[[ $- != *i* ]] && return
# Run fastfetch
if command -v fastfetch >/dev/null 2>&1; then
fastfetch
fi
''; '';
}; };
} }