I woke up to my zsh prompt looking like this. I didn’t do anything, did my theme change for some reason or what?
share .zshrc
. also did you install any plugin from aur?
I didn’t touch anything about it for months. Heres .zshrc
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Use powerline
USE_POWERLINE="true"
# Source manjaro-zsh-configuration
if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
source /usr/share/zsh/manjaro-zsh-config
fi
# Use manjaro zsh prompt
if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
source /usr/share/zsh/manjaro-zsh-prompt
fi
source ~/powerlevel10k/powerlevel10k.zsh-theme
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zshhistory
setopt appendhistory
# Custom ZSH Binds
bindkey '^ ' autosuggest-accept
# Load autojump
source /usr/share/autojump/autojump.zsh 2>/dev/null
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
this is a aur package with a lot of python dependencies. try rebuilding it after the latest update:
pamac build $(pacman -Qoq /usr/lib/python3.9) --no-confirm
source ~/.zshrc