6 lines
231 B
Text
6 lines
231 B
Text
if [[ -n "$(which-command oh-my-posh)" ]]; then
|
|
OHMYPOSH_CONFIG=''
|
|
[[ -r ~/.poshtheme.omp.json ]] && OHMYPOSH_CONFIG="~/.poshtheme.omp.json"
|
|
eval "$(oh-my-posh init bash --config $OHMYPOSH_CONFIG)"
|
|
unset OHMYPOSH_CONFIG
|
|
fi
|