diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index b405bb6..87385f1 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -8,8 +8,8 @@ italic_font Roboto Mono Italic bold_italic_font Roboto Mono Bold Italic font_size 9 font_features none -symbol_map U+E007-U+F8E8 Font Awesome 6 Brands -symbol_map U+F022 Font Awesome 6 Free +# symbol_map U+E007-U+F8E8 Font Awesome 6 Brands +# symbol_map U+F022 Font Awesome 6 Free #: }}} diff --git a/.config/polybar/bar.ini b/.config/polybar/bar.ini index e85bf99..959a700 100644 --- a/.config/polybar/bar.ini +++ b/.config/polybar/bar.ini @@ -65,7 +65,7 @@ font-2 = "Material Icons:size=16:antialias=true;1" font-3 = "NotoSans-Regular:size=18:weight=bold:antialias=true;2" font-4 = "NotoSans-Regular:size=28:weight=bold:antialias=true;-12" font-5 = "FontAwesome:size=21:antialias=true;4" -font-6 = "Font Awesome 5 Brands-Regular-400:size=32:antialias=true;1" +font-6 = "Font Awesome 6 Brands-Regular-400:size=32:antialias=true;1" modules-left = polywins modules-center = custom_date diff --git a/.p10k.zsh b/.p10k.zsh index 0e4696c..539be82 100644 --- a/.p10k.zsh +++ b/.p10k.zsh @@ -427,7 +427,7 @@ # ⇢42 if ahead of the push remote; no leading space if also behind: ⇠42⇢42. (( VCS_STATUS_PUSH_COMMITS_AHEAD )) && res+="${clean}⇢${VCS_STATUS_PUSH_COMMITS_AHEAD}" # *42 if have stashes. - (( VCS_STATUS_STASHES )) && res+=" ${clean}*${VCS_STATUS_STASHES}" + (( VCS_STATUS_STASHES )) && res+=" ${clean}${VCS_STATUS_STASHES}" # 'merge' if the repo is in an unusual state. [[ -n $VCS_STATUS_ACTION ]] && res+=" ${conflicted}${VCS_STATUS_ACTION}" # ~42 if have merge conflicts. @@ -435,7 +435,7 @@ # +42 if have staged changes. (( VCS_STATUS_NUM_STAGED )) && res+=" ${modified}+${VCS_STATUS_NUM_STAGED}" # !42 if have unstaged changes. - (( VCS_STATUS_NUM_UNSTAGED )) && res+=" ${modified}!${VCS_STATUS_NUM_UNSTAGED}" + (( VCS_STATUS_NUM_UNSTAGED )) && res+=" ${modified}${VCS_STATUS_NUM_UNSTAGED}" # ?42 if have untracked files. It's really a question mark, your font isn't broken. # See POWERLEVEL9K_VCS_UNTRACKED_ICON above if you want to use a different icon. # Remove the next line if you don't want to see untracked files at all.