mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-02-02 05:41:10 -08:00
64 lines
1.8 KiB
Bash
64 lines
1.8 KiB
Bash
export POSH_THEME=::CONFIG::
|
|
export POSH_SHELL_VERSION=$BASH_VERSION
|
|
export POWERLINE_COMMAND="oh-my-posh"
|
|
export POSH_PID=$$
|
|
export CONDA_PROMPT_MODIFIER=false
|
|
omp_start_time=""
|
|
|
|
# start timer on command start
|
|
PS0='${omp_start_time:0:$((omp_start_time="$(_omp_start_timer)",0))}'
|
|
# set secondary prompt
|
|
PS2="$(::OMP:: print secondary --config="$POSH_THEME" --shell=bash --shell-version="$BASH_VERSION")"
|
|
|
|
function _set_posh_cursor_position() {
|
|
# not supported in Midnight Commander
|
|
# see https://github.com/JanDeDobbeleer/oh-my-posh/issues/3415
|
|
if [[ "::CURSOR::" != "true" ]] || [[ -v MC_SID ]]; then
|
|
return
|
|
fi
|
|
|
|
local oldstty=$(stty -g)
|
|
stty raw -echo min 0
|
|
|
|
local COL
|
|
local ROW
|
|
IFS=';' read -sdR -p $'\E[6n' ROW COL
|
|
|
|
stty $oldstty
|
|
|
|
export POSH_CURSOR_LINE=${ROW#*[}
|
|
export POSH_CURSOR_COLUMN=${COL}
|
|
}
|
|
|
|
function _omp_start_timer() {
|
|
::OMP:: get millis
|
|
}
|
|
|
|
# template function for context loading
|
|
function set_poshcontext() {
|
|
return
|
|
}
|
|
|
|
function _omp_hook() {
|
|
local ret=$?
|
|
local omp_stack_count=$((${#DIRSTACK[@]} - 1))
|
|
local omp_elapsed=-1
|
|
if [[ -n "$omp_start_time" ]]; then
|
|
local omp_now=$(::OMP:: get millis --shell=bash)
|
|
omp_elapsed=$((omp_now-omp_start_time))
|
|
omp_start_time=""
|
|
fi
|
|
set_poshcontext
|
|
_set_posh_cursor_position
|
|
PS1="$(::OMP:: print primary --config="$POSH_THEME" --shell=bash --shell-version="$BASH_VERSION" --error="$ret" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" | tr -d '\0')"
|
|
return $ret
|
|
}
|
|
|
|
if [ "$TERM" != "linux" ] && [ -x "$(command -v ::OMP::)" ] && ! [[ "$PROMPT_COMMAND" =~ "_omp_hook" ]]; then
|
|
PROMPT_COMMAND="_omp_hook; $PROMPT_COMMAND"
|
|
fi
|
|
|
|
if [ "::UPGRADE::" == "true" ]; then
|
|
echo "::UPGRADENOTICE::"
|
|
fi
|