@heyitsiveen/dotfiles 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,3 +29,10 @@ end
|
|
|
29
29
|
if functions -q tide_palette
|
|
30
30
|
tide_palette $tide_selected_palette
|
|
31
31
|
end
|
|
32
|
+
|
|
33
|
+
# Palettes hardcode the Linux Tux glyph for tide_os_icon. Override per host
|
|
34
|
+
# so macOS shows an Apple logo; other platforms fall through to the palette default.
|
|
35
|
+
switch (uname)
|
|
36
|
+
case Darwin
|
|
37
|
+
set -U tide_os_icon (printf '\uf302')
|
|
38
|
+
end
|