1
0
mirror of https://gitlab.com/ceda_ei/wish synced 2025-12-14 20:40:06 +01:00

Add wish_append. Change plugins to use it

This commit is contained in:
2019-02-16 13:30:42 +05:30
parent 50070fe6c7
commit 0a6695dbce
5 changed files with 30 additions and 27 deletions

View File

@@ -12,15 +12,5 @@ function wish_dummy_set_colors() {
}
function wish_dummy_main() {
if [[ $fg -eq -1 ]]; then
local fg="\[\033[0;5;0m\]"
else
local fg="\[\033[38;5;${WISH_DUMMY_FG}m\]"
fi
if [[ $bg -eq -1 ]]; then
local bg="\[\033[0;5;0m\]"
else
local bg="\[\033[48;5;${WISH_DUMMY_BG}m\]"
fi
PS1="$PS1$bg${fg}dummy"
wish_append $WISH_DUMMY_BG $WISH_DUMMY_FG dummy
}