9 lines
408 B
Text
9 lines
408 B
Text
if test -v DISTROBOX_HOST_HOME; then unset ZDOTDIR; exec zsh; fi # fix distrobox
|
|
if test "x$TERMINALNAME" = "xalacritty"; then eval "$(zellij setup --generate-auto-start zsh)"; fi # autostart zellij only in alacritty
|
|
|
|
# startup banner
|
|
potentialBanner=('bofh' 'hackerquotes' 'colorscript random' 'fastfetch')
|
|
eval "$potentialBanner[$RANDOM%$#potentialBanner+1]"
|
|
|
|
# and source plugins
|
|
eval "$(sheldon source)"
|