diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-03-26 04:11:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-26 04:11:04 +0300 |
commit | 4c919f1a2bca9d52271edebcbd5090423304afef (patch) | |
tree | 5f58cde91e4dff23c7ff127772f7f7ad8d004ded /functions/utilities.zsh | |
parent | 99f142de36630c141f7c8959563f15730b568b3c (diff) | |
parent | 213ed57f68c465bd5f6b20953840efea2d14c796 (diff) |
Merge pull request #780 from sambadevi/next
update icons for nerd-fonts 2.0.0
Diffstat (limited to 'functions/utilities.zsh')
-rwxr-xr-x | functions/utilities.zsh | 15 |
1 files changed, 15 insertions, 0 deletions
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') |