diff options
author | Osman Tas <me@tasosman.com> | 2020-12-23 19:58:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 19:58:10 +0300 |
commit | 61c63eea6b8bc12c56dcb6cc40529cc5c643a94f (patch) | |
tree | 7bd06e7cdf7f9fd637f24ede083fbfd9b3b6e9bb /internal/wizard.zsh | |
parent | 5ea5d4bc196d3b3c82d611149a541061e47716d5 (diff) |
Update os icon at zsh.exe on git for windows (#1180)
* Update os icon for windows
Windows icon is not shown on git for windows zsh.exe
Same update also added to wizards.zsh file.
* Update os icon for windows
Windows icon is not shown on git for windows zsh.exe
Same update also added to p10k.zsh file.
Diffstat (limited to 'internal/wizard.zsh')
-rw-r--r-- | internal/wizard.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 83fbf07e..793c8ef3 100644 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -1070,7 +1070,7 @@ function os_icon_name() { case $uname in SunOS) echo SUNOS_ICON;; Darwin) echo APPLE_ICON;; - CYGWIN_NT-* | MSYS_NT-*) echo WINDOWS_ICON;; + CYGWIN_NT-*|MSYS_NT-*|MINGW64_NT-*|MINGW32_NT-*) echo WINDOWS_ICON;; FreeBSD|OpenBSD|DragonFly) echo FREEBSD_ICON;; Linux) local os_release_id |