[polybar|p10k] Use nerf roboto patched font

This commit is contained in:
Daniel Carrillo 2022-03-19 12:37:15 +01:00
parent c7d46c88cd
commit 0ca5da2a4f
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
3 changed files with 5 additions and 5 deletions

View File

@ -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
#: }}}

View File

@ -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

View File

@ -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.