diff options
author | Tim Otlik <t.otlik@vivaldi.net> | 2018-03-20 20:31:46 +0300 |
---|---|---|
committer | Tim Otlik <t.otlik@vivaldi.net> | 2018-03-20 20:31:46 +0300 |
commit | 7a8fcf98c1dc3614a154d1338b1b2ac1fe5b1979 (patch) | |
tree | 56efedbdaacf2fa0d403f47571d88d68c9008c5d | |
parent | 99f142de36630c141f7c8959563f15730b568b3c (diff) |
update icons for nerd-fonts 2.0.0
-rwxr-xr-x | functions/icons.zsh | 33 | ||||
-rwxr-xr-x | functions/utilities.zsh | 15 |
2 files changed, 34 insertions, 14 deletions
diff --git a/functions/icons.zsh b/functions/icons.zsh index b929f73a..fc6a09d6 100755 --- a/functions/icons.zsh +++ b/functions/icons.zsh @@ -319,21 +319,26 @@ case $POWERLEVEL9K_MODE in MULTILINE_LAST_PROMPT_PREFIX $'\u2570'$'\U2500 ' # ╰─ APPLE_ICON $'\uF179' # WINDOWS_ICON $'\uF17A' # - FREEBSD_ICON $'\UF30E ' # + FREEBSD_ICON $'\UF30C ' # ANDROID_ICON $'\uF17B' # - LINUX_ARCH_ICON $'\uF300' # - LINUX_DEBIAN_ICON $'\uF302' # - LINUX_UBUNTU_ICON $'\uF30C' # - LINUX_CENTOS_ICON $'\uF301' # - LINUX_COREOS_ICON $'\uF30F' # - LINUX_ELEMENTARY_ICON $'\uF311' # - LINUX_FEDORA_ICON $'\uF303' # - LINUX_GENTOO_ICON $'\uF310' # - LINUX_MINT_ICON $'\uF304' # - LINUX_MAGEIA_ICON $'\uF306' # - LINUX_OPENSUSE_ICON $'\uF308' # - LINUX_SABAYON_ICON $'\uF313' # - LINUX_SLACKWARE_ICON $'\uF30A' # + LINUX_ARCH_ICON $'\uF303' # + LINUX_CENTOS_ICON $'\uF304' # + LINUX_COREOS_ICON $'\uF305' # + LINUX_DEBIAN_ICON $'\uF306' # + LINUX_ELEMENTARY_ICON $'\uF309' # + LINUX_FEDORA_ICON $'\uF30a' # + LINUX_GENTOO_ICON $'\uF30d' # + LINUX_MAGEIA_ICON $'\uF310' # + LINUX_MINT_ICON $'\uF30e' # + LINUX_NIXOS_ICON $'\uF313' # + LINUX_MANJARO_ICON $'\uF312' # + LINUX_DEVUAN_ICON $'\uF307' # + LINUX_ALPINE_ICON $'\uF300' # + LINUX_AOSC_ICON $'\uF301' # + LINUX_OPENSUSE_ICON $'\uF314' # + LINUX_SABAYON_ICON $'\uF317' # + LINUX_SLACKWARE_ICON $'\uF319' # + LINUX_UBUNTU_ICON $'\uF31b' # LINUX_ICON $'\uF17C' # SUNOS_ICON $'\uF185 ' # HOME_ICON $'\uF015' # diff --git a/functions/utilities.zsh b/functions/utilities.zsh index a9559922..0f33a1b0 100755 --- a/functions/utilities.zsh +++ b/functions/utilities.zsh @@ -144,6 +144,21 @@ case $(uname) in "linuxmint") OS_ICON=$(print_icon 'LINUX_MINT_ICON') ;; + "alpine") + OS_ICON=$(print_icon 'LINUX_ALPINE_ICON') + ;; + "aosc") + OS_ICON=$(print_icon 'LINUX_AOSC_ICON') + ;; + "nixos") + OS_ICON=$(print_icon 'LINUX_NIXOS_ICON') + ;; + "devuan") + OS_ICON=$(print_icon 'LINUX_DEVUAN_ICON') + ;; + "manjaro") + OS_ICON=$(print_icon 'LINUX_MANJARO_ICON') + ;; *) OS='Linux' OS_ICON=$(print_icon 'LINUX_ICON') |