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; echo " - BOFH"' 'fastfetch' 'hackerquotes' 'colorscript random') eval "$potentialBanner[$RANDOM%$#potentialBanner+1]" # ohmyposh theme potentialTheme=('atomic.omp.json' 'emodipt-extend.omp.json' 'chips.omp.json' '1_shell.omp.json' 'honukai.omp.json' 'if_tea.omp.json' 'illusi0n.omp.json' 'kali.omp.json' 'lambda.omp.json' 'lambdageneration.omp.json' 'nordtron.omp.json' 'pure.omp.json' 'uew.omp.json' 'tokyo.omp.json') export POSH_THEME="/usr/share/oh-my-posh/themes/$potentialTheme[$RANDOM%$#potentialTheme+1]" # and source plugins eval "$(sheldon source)"