diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2024-02-01 08:44:39 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2024-02-01 08:44:39 +0300 |
commit | 62341054d8aa40ade03fc55bdbc95b9ff2d8d2b6 (patch) | |
tree | 775af2ea87967f6e119853c80438ad6f7f19e75e | |
parent | be39c4ea5a1ad6d322b2e641b6617940285cd4fb (diff) |
set the default value of LINUX_NEON_ICON to a glyph that exists in the recommended font (#2553)HEADmaster
-rw-r--r-- | internal/icons.zsh | 4 | ||||
-rw-r--r-- | internal/p10k.zsh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/internal/icons.zsh b/internal/icons.zsh index f733c7f6..81c215e6 100644 --- a/internal/icons.zsh +++ b/internal/icons.zsh @@ -541,7 +541,7 @@ function _p9k_init_icons() { LINUX_ENDEAVOUROS_ICON '\UF322'$s # LINUX_ROCKY_ICON '\UF32B'$s # LINUX_GUIX_ICON '\UF325'$s # - LINUX_NEON_ICON '\UF331'$s # + LINUX_NEON_ICON '\uF17C' # LINUX_ICON '\uF17C' # SUNOS_ICON '\uF185 ' # HOME_ICON '\uF015'$s # @@ -700,7 +700,7 @@ function _p9k_init_icons() { LINUX_ENDEAVOUROS_ICON '\uF17C' # LINUX_ROCKY_ICON '\uF17C' # LINUX_GUIX_ICON '\uF325'$s # - LINUX_NEON_ICON '\UF331'$s # + LINUX_NEON_ICON '\uF17C' # LINUX_ICON '\uF17C' # SUNOS_ICON '\uF185 ' # HOME_ICON '\uF015'$s # diff --git a/internal/p10k.zsh b/internal/p10k.zsh index d7be4d0a..a4a4c00b 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -8637,7 +8637,7 @@ function _p9k_init_cacheable() { endeavouros) _p9k_set_os Linux LINUX_ENDEAVOUROS_ICON;; rocky) _p9k_set_os Linux LINUX_ROCKY_ICON;; guix) _p9k_set_os Linux LINUX_GUIX_ICON;; - neon) _p9k_set_os Linux LINUX_NEON_ICON;; + neon) _p9k_set_os Linux LINUX_NEON_ICON;; *) _p9k_set_os Linux LINUX_ICON;; esac ;; @@ -9458,7 +9458,7 @@ if [[ $__p9k_dump_file != $__p9k_instant_prompt_dump_file && -n $__p9k_instant_p zf_rm -f -- $__p9k_instant_prompt_dump_file{,.zwc} 2>/dev/null fi -typeset -g P9K_VERSION=1.19.14 +typeset -g P9K_VERSION=1.19.15 unset VSCODE_SHELL_INTEGRATION _p9k_init_ssh |