diff --git a/dot_config/sheldon/plugins.toml b/dot_config/sheldon/plugins.toml index fadab1c..6bf13ef 100644 --- a/dot_config/sheldon/plugins.toml +++ b/dot_config/sheldon/plugins.toml @@ -105,7 +105,7 @@ github = "romkatv/powerlevel10k" #inline = "_evalcache starship init zsh --print-full-init" #[plugins.ohmyposh] -#inline = "_evalcache oh-my-posh init zsh --config /usr/share/oh-my-posh/themes/kali.omp.json" +#inline = "_evalcache oh-my-posh init zsh" # evals [plugins.zoxide] diff --git a/dot_config/zsh/rc.zsh b/dot_config/zsh/rc.zsh index f463bf1..e90fcb8 100644 --- a/dot_config/zsh/rc.zsh +++ b/dot_config/zsh/rc.zsh @@ -1,7 +1,13 @@ 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)"