forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy path.icons
43 lines (42 loc) · 1.28 KB
/
.icons
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash
if [[ -z ${FORCE_SIMPLE_ICONS+x} && "$UTF8_LANG" == 1 ]] && ( [[ "$IS_TTY" == 0 || "$SYSTEM_TYPE" == "Win10_Linux" ]] ); then
export ICON_FOR_FALSE="✗"
export ICON_FOR_TRUE="✓"
export ICON_FOR_NEXT="❯"
export ICON_FOR_ARROW_UP="↑"
export ICON_FOR_ARROW_DOWN="↓"
export ICON_FOR_ARROW_LEFT="←"
export ICON_FOR_ARROW_RIGHT="→"
export ICON_FOR_SUN="☀"
export ICON_FOR_UMBRELLA="☂"
export ICON_FOR_CLOUD="☁"
export ICON_FOR_FULL_HEART="♥"
export ICON_FOR_EMPTY_HEADRT="♡"
export ICON_FOR_AT="@"
export ICON_FOR_UP="△"
export ICON_FOR_DOWN="▽"
export ICON_FOR_LEFT="◁"
export ICON_FOR_RIGHT="▷"
export ICON_FOR_STASHED="‡"
export ICON_FOR_UNTRACKED="…"
else
export ICON_FOR_FALSE="x"
export ICON_FOR_TRUE="v"
export ICON_FOR_NEXT="#"
export ICON_FOR_ARROW_UP="^"
export ICON_FOR_ARROW_DOWN="v"
export ICON_FOR_ARROW_LEFT="<"
export ICON_FOR_ARROW_RIGHT=">"
export ICON_FOR_SUN="*"
export ICON_FOR_UMBRELLA="T"
export ICON_FOR_CLOUD="W"
export ICON_FOR_FULL_HEART="H"
export ICON_FOR_EMPTY_HEADRT="h"
export ICON_FOR_AT="@"
export ICON_FOR_UP="^"
export ICON_FOR_DOWN="v"
export ICON_FOR_LEFT="<"
export ICON_FOR_RIGHT=">"
export ICON_FOR_STASHED="%"
export ICON_FOR_UNTRACKED="?"
fi