mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 22:07:25 -08:00
10 lines
230 B
Bash
10 lines
230 B
Bash
export POSH_THEME=::CONFIG::
|
|
|
|
function _update_ps1() {
|
|
PS1="$(::OMP:: --config $POSH_THEME --error $?)"
|
|
}
|
|
|
|
if [ "$TERM" != "linux" ] && [ -x "$(command -v ::OMP::)" ]; then
|
|
PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
|
|
fi
|