aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2019-08-07 13:44:51 +0300
committerromkatv <roman.perepelitsa@gmail.com>2019-08-07 13:44:51 +0300
commit93230ae6ec92add5f86bf6131c970a3c04f232cd (patch)
treea88a485557a413c073837fb0b71013c121b6e213
parent24a5261a395d5e1d531275b70ed48de479abe38a (diff)
change os_icon style
-rw-r--r--config/p10k-classic.zsh8
-rw-r--r--config/p10k-lean.zsh6
-rwxr-xr-xinternal/wizard.zsh10
3 files changed, 15 insertions, 9 deletions
diff --git a/config/p10k-classic.zsh b/config/p10k-classic.zsh
index ce42b9a6..925f08a0 100644
--- a/config/p10k-classic.zsh
+++ b/config/p10k-classic.zsh
@@ -173,10 +173,10 @@ fi
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL=
#################################[ os_icon: os identifier ]##################################
- # Foreground color.
- typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=209
- # Display this icon instead of the default.
- # typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='⭐'
+ # OS identifier color.
+ typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=255
+ # Make the icon bold.
+ typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='%B${P9K_CONTENT}'
################################[ prompt_char: prompt symbol ]################################
# Transparent background.
diff --git a/config/p10k-lean.zsh b/config/p10k-lean.zsh
index db1900eb..175a0d41 100644
--- a/config/p10k-lean.zsh
+++ b/config/p10k-lean.zsh
@@ -163,9 +163,9 @@ fi
#################################[ os_icon: os identifier ]##################################
# OS identifier color.
- typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=209
- # Display this icon instead of the default.
- # typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='⭐'
+ typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=
+ # Make the icon bold.
+ typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='%B${P9K_CONTENT}'
################################[ prompt_char: prompt symbol ]################################
# Green prompt symbol if the last command succeeded.
diff --git a/internal/wizard.zsh b/internal/wizard.zsh
index a47fc210..ac9fd8f6 100755
--- a/internal/wizard.zsh
+++ b/internal/wizard.zsh
@@ -51,7 +51,7 @@ typeset -r vertical_bar='|'
typeset -r slanted_bar='\uE0BD'
typeset -ra lean_left=(
- '' '${extra_icons[1]:+%209F$extra_icons[1] }%31F$extra_icons[2]%B%39F~%b%31F/%B%39Fpowerlevel10k%b%f $prefixes[1]%76F$extra_icons[3]master ⇡2%f '
+ '' '${extra_icons[1]:+$extra_icons[1] }%31F$extra_icons[2]%B%39F~%b%31F/%B%39Fpowerlevel10k%b%f $prefixes[1]%76F$extra_icons[3]master ⇡2%f '
'' '%76F❯%f █'
)
@@ -61,7 +61,7 @@ typeset -ra lean_right=(
)
typeset -ra classic_left=(
- '%$frame_color[$color]F╭─' '%F{$bg_color[$color]}$left_tail%K{$bg_color[$color]} ${extra_icons[1]:+%209F$extra_icons[1] %$sep_color[$color]F$left_subsep%f }%31F$extra_icons[2]%B%39F~%b%K{$bg_color[$color]}%31F/%B%39Fpowerlevel10k%b%K{$bg_color[$color]} %$sep_color[$color]F$left_subsep%f %$prefix_color[$color]F$prefixes[1]%76F$extra_icons[3]master ⇡2 %k%$bg_color[$color]F$left_head%f'
+ '%$frame_color[$color]F╭─' '%F{$bg_color[$color]}$left_tail%K{$bg_color[$color]} ${extra_icons[1]:+$extra_icons[1]%K{$bg_color[$color]\} %$sep_color[$color]F$left_subsep%f }%31F$extra_icons[2]%B%39F~%b%K{$bg_color[$color]}%31F/%B%39Fpowerlevel10k%b%K{$bg_color[$color]} %$sep_color[$color]F$left_subsep%f %$prefix_color[$color]F$prefixes[1]%76F$extra_icons[3]master ⇡2 %k%$bg_color[$color]F$left_head%f'
'%$frame_color[$color]F╰─' '%f █'
)
@@ -418,6 +418,12 @@ function ask_extra_icons() {
vcs_icon=${vcs_icon// }
branch_icon=${branch_icon// }
fi
+ if [[ $style == classic ]]; then
+ os_icon="%255F$os_icon%f"
+ else
+ os_icon="%f$os_icon"
+ fi
+ os_icon="%B$os_icon%b"
local many=("$os_icon" "$dir_icon " "$vcs_icon $branch_icon ")
while true; do
clear