1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Resolve #918 Transparent background

Now function getColorCode consider value 'none' like a good value.
When it's use to set background the segment become transparent
This commit is contained in:
Ythildir 2018-07-21 22:52:08 +02:00
parent 22a761208d
commit e39e024e74

View file

@ -79,6 +79,10 @@ function getColorCode() {
else else
echo -n "$1" echo -n "$1"
fi fi
# Check if value is none with any case.
elif [[ $1 = [nN][oO][nN][eE] ]]
then
echo -n 'none'
else else
typeset -A codes typeset -A codes
# https://jonasjacek.github.io/colors/ # https://jonasjacek.github.io/colors/