Update .config/sheldon/plugins.toml

Update .config/zsh/rc.zsh
This commit is contained in:
eeleater 2023-02-11 21:48:34 +01:00
parent 0ccc378d0c
commit 4803e74e77
2 changed files with 7 additions and 1 deletions

View file

@ -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]

View file

@ -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)"