mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 09:50:06 +00:00
Added documentation and a little helper function for icon customization.
This commit is contained in:
parent
bf9ef6acf1
commit
d8c55a2592
2 changed files with 9 additions and 0 deletions
|
@ -414,6 +414,9 @@ This special prompt does not work on the right side, as it would be too long,
|
||||||
and ZSH hides it automatically. Also have in mind, that the output depends on
|
and ZSH hides it automatically. Also have in mind, that the output depends on
|
||||||
your `POWERLEVEL9K_MODE` settings.
|
your `POWERLEVEL9K_MODE` settings.
|
||||||
|
|
||||||
|
You can change any icon by setting a environment variable. To get a full list
|
||||||
|
of icons just type `get_icon_names` in your terminal.
|
||||||
|
|
||||||
#### Segment Color Customization
|
#### Segment Color Customization
|
||||||
|
|
||||||
For each segment in your prompt, you can specify a foreground and background
|
For each segment in your prompt, you can specify a foreground and background
|
||||||
|
|
|
@ -59,6 +59,12 @@ function print_icon() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_icon_names() {
|
||||||
|
for key in "${(@k)icons}"; do
|
||||||
|
echo "POWERLEVEL9K_$key: ${icons[$key]}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# Icons
|
# Icons
|
||||||
################################################################
|
################################################################
|
||||||
|
|
Loading…
Reference in a new issue