-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfoline.zsh-theme
executable file
·147 lines (130 loc) · 3.2 KB
/
infoline.zsh-theme
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
setopt promptsubst
autoload colors && colors
# development helpers
debug() {
print -b "D |$@|" 1>&2
}
# TODO: color modes: 8, 16, 255
# define colors
autoload -U colors && colors
typeset -Ag infoline_color
infoline_color=(
ok "%{$fg[green]%}"
focus "%{$fg[yellow]%}"
error "%{$fg[red]%}"
note "%{$fg[blue]%}"
important "%{$fg[magenta]%}"
reset "%{$reset_color%}"
default "%{$fg[default]%}"
line "%{$bg[grey]%}"
)
# define signs
typeset -Ag infoline_sign
infoline_sign=(
cont '…' # 1 char
plus '✚' # 1 char, bad
cross '✖' # 1 char, bad
dot '●' # 1 char
dots '⛬' # 1char
# star '🟉' # 2 char
star '*'
flag '⚑' # 1 char
# skull '🕱' # 2 char
skull '!' # TODO: change to error
jobs '⚙' # 1 char
level '⮇' # 1 char but bad
# disk '🖸' # 2 char
disk 'o' # 2 char
memory '🖫' # 2 char
untracked '?'
ahead '⭱' # 1 char
behind '⭳' # 1 char
diverged '⭿' # 1 char
differ '⭾' # 1 char
stashes '≡' # 1 char
start '▶' # 1 char
file '🗎' # 2 char
dir '📁' # 2 char
todo '🔨' # 2 char
action '↯' # 1 char
location '⌘' # 1char
check '🗹' # 2 char
)
# infoline sections
infoline_left=()
infoline_right=()
infoline_start=()
# source sections
source ${0:A:h}/infoline-host.zsh
source ${0:A:h}/infoline-cwd.zsh
source ${0:A:h}/infoline-vcsgit.zsh
source ${0:A:h}/infoline-virtualenv.zsh
source ${0:A:h}/infoline-rc.zsh
source ${0:A:h}/infoline-start.zsh
# source ${0:A:h}/infoline-history.zsh
source ${0:A:h}/infoline-jobs.zsh
source ${0:A:h}/infoline-shelllevel.zsh
source ${0:A:h}/infoline-disk.zsh
#source ${0:A:h}/infoline-clock.zsh
# render prompt on each new command line
infoline-prompt-line() {
_return_value=$?
local -a left right start
maxwidth=$((COLUMNS / 2))
# right section
foreach part ($infoline_right)
value=$($part $maxwidth)
if [ -n "$value" ]; then
# right+="%$maxwidth<…<$value"$cdefault
right+=$value$infoline_color[default]
fi
end
right_value=${(j: :)right}
right_width=${#${(%)${(S)right_value//\%\{*\%\}}}}
# left section
maxwidth=$(( ( COLUMNS - right_width ) / 2 ))
foreach part ($infoline_left)
value=$($part $maxwidth)
if [ -n "$value" ]; then
#left+="%$maxwidth<…<$value"$cdefault
left+=$value$infoline_color[default]
fi
end
left_value=${(j: :)left}
left_width=${#${(%)${(S)left_value//\%\{*\%\}}}}
# center fill
width=$((COLUMNS - left_width - right_width - 2))
if [ $width -gt 0 ]; then
fill=${(r:$width:: :)}
else
fill=" "
fi
# render
print -nr -- "$infoline_color[line] $left_value$fill$right_value $infoline_color[reset]"
}
infoline-prompt-start() {
# start section
foreach part ($infoline_start)
start+=$($part)$infoline_color[default]
end
start_value=${(j: :)start}
# render
print -nr -- "$start_value $infoline_color[reset]"
}
setopt prompt_subst
if (( ${*[(I)show]} )); then
if (( ${*[(I)false]} )); then
false
print -n -P "$(infoline-prompt-line)"
print -n -P "$(infoline-prompt-start)"
else
true
print -n -P "$(infoline-prompt-line)"
print -n -P "$(infoline-prompt-start)"
fi
else
PROMPT='$(infoline-prompt-line)
$(infoline-prompt-start)'
fi
# cleanup
unset debug