make_prompt_rs/source.sh

11 lines
223 B
Bash
Raw Normal View History

2024-04-15 14:18:26 +00:00
bin_path=$(pwd)/target/debug/make_prompt
PROMPT_COMMAND='make_prompt'
make_prompt () {
2024-04-16 18:34:30 +00:00
local lastexit=$?
local bgjobs=$(jobs | wc -l)
local prompt_pref=$($bin_path $lastexit $bgjobs)
2024-04-15 14:18:26 +00:00
PS1="$prompt_pref"
}