-
Notifications
You must be signed in to change notification settings - Fork 64
/
theme-functions.sh
303 lines (254 loc) · 10.4 KB
/
theme-functions.sh
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
#!/bin/bash
#
# Author: Diogo Alexsander Cavilha <[email protected]>
# Date: 03.02.2016
#
# Theme functions.
# ----------------------------------------------------------------------------------------------------------------------
# Get the notification area according to the parameter.
#
# param int 0: Poor notification area, no icons.
# param int 1: Rich notification area, icons instead of simples characters.
# return string Notification area.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_get_notification_area() {
if [ "false" = "$1" ]
then
__fancygit_get_poor_notification_area
return
fi
__fancygit_get_rich_notification_area
}
# ----------------------------------------------------------------------------------------------------------------------
# Creates a rich notification area, which means it will have the same icons as fancy themes.
# ----------------------------------------------------------------------------------------------------------------------
__fancygit_get_rich_notification_area() {
local icon_git_stash="${FANCYGIT_ICON_HAS_STASHES:- }"
local icon_untracked_files="${FANCYGIT_ICON_HAS_UNTRACKED_FILES:- }"
local icon_changed_files="${FANCYGIT_ICON_HAS_CHANGED_FILES:- }"
local icon_added_files="${FANCYGIT_ICON_HAS_ADDED_FILES:- }"
local icon_unpushed_commits="${FANCYGIT_ICON_HAS_UNPUSHED_COMMITS:- }"
local number_unpushed_commits=0
local venv=""
if [ "" = "$(fancygit_git_get_staged_files)" ]
then
icon_added_files=""
fi
if [ "" = "$(fancygit_git_get_stash)" ]
then
icon_git_stash=""
fi
if [ "" = "$(fancygit_git_get_untracked_files)" ]
then
icon_untracked_files=""
fi
if [ "" = "$(fancygit_git_get_changed_files)" ]
then
icon_changed_files=""
fi
number_unpushed_commits=$(fancygit_git_get_unpushed_commits | wc -l)
icon_unpushed_commits="${icon_unpushed_commits}+${number_unpushed_commits}"
if [ 0 -eq "$number_unpushed_commits" ]
then
icon_unpushed_commits=""
fi
venv=$(__fancygit_get_venv_icon)
notification_area="${venv}${icon_git_stash}${icon_untracked_files}${icon_changed_files}${icon_added_files}${icon_unpushed_commits}"
echo "${notification_area//[[:space:]]*$/}"
}
# ----------------------------------------------------------------------------------------------------------------------
# Creates a poor notification area, which means it won't have icons.
# ----------------------------------------------------------------------------------------------------------------------
__fancygit_get_poor_notification_area() {
local notification_area=""
# Set colors.
local color_reset="\\[\\e[39m\\]"
local color_cyan="\\[\\e[36m\\]"
local color_light_green="\\[\\e[92m\\]"
local color_light_red="\\[\\e[91m\\]"
# Git info.
local branch_name
local staged_files
local git_stash
local git_has_unpushed_commits
local git_number_unpushed_commits
local git_number_untracked_files
local git_number_changed_files
# Set git info.
branch_name=$(fancygit_git_get_branch)
staged_files=$(fancygit_git_get_staged_files)
git_stash=$(fancygit_git_get_stash)
git_has_unpushed_commits=$(fancygit_git_get_unpushed_commits)
git_number_unpushed_commits=$(fancygit_git_get_unpushed_commits | wc -l)
git_number_untracked_files=$(fancygit_git_get_untracked_files | wc -l)
git_number_changed_files=$(fancygit_git_get_changed_files | wc -l)
if [ "" != "$git_stash" ]
then
notification_area="${notification_area}∿${color_reset} "
fi
if [ "$git_number_untracked_files" -gt 0 ]
then
notification_area="${notification_area}${color_cyan}?${color_reset} "
fi
if [ "$git_number_changed_files" -gt 0 ]
then
notification_area="${notification_area}${color_light_green}+${color_reset}${color_light_red}-${color_reset} "
fi
if [ "" != "$staged_files" ]
then
notification_area="${notification_area}${color_light_green}✔${color_reset} "
fi
if [ "$git_has_unpushed_commits" ]
then
notification_area="${notification_area}${color_light_green}^${git_number_unpushed_commits}${color_reset} "
fi
if [ "" != "$branch_name" ] && fancygit_git_is_only_local_branch "$branch_name"
then
notification_area="${notification_area}${color_light_green}*${color_reset} "
fi
if fancygit_git_is_merged_branch
then
notification_area="${notification_area}${color_light_green}<${color_reset} "
fi
if [ "" != "$notification_area" ]
then
# Trim notification_area content
notification_area=$(echo "$notification_area" | sed -e 's/[[:space:]]*$//' | sed -e 's/^[[:space:]]*//')
echo " ${notification_area//[[:space:]]*$/}"
return
fi
echo ""
}
# ----------------------------------------------------------------------------------------------------------------------
# Return a boolean informing if there is a conda virtualenv.
# ----------------------------------------------------------------------------------------------------------------------
__has_conda_env() {
if [ "$CONDA_DEFAULT_ENV" != "base" ] && [[ -n $CONDA_DEFAULT_ENV ]]
then
return 0
fi
return 1
}
# ----------------------------------------------------------------------------------------------------------------------
# Return the icon that indicates we're working in a virtual environment.
# ----------------------------------------------------------------------------------------------------------------------
__fancygit_get_venv_icon() {
local icon_venv
icon_venv=" ${FANCYGIT_ICON_VENV:-}"
if [[ -n $VIRTUAL_ENV ]] || __has_conda_env
then
echo "$icon_venv"
return
fi
echo ""
}
# ----------------------------------------------------------------------------------------------------------------------
# Return the virtual environment name if it exists.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_get_venv_name() {
if [[ -n $VIRTUAL_ENV ]]
then
printf "%s" "$(basename "${VIRTUAL_ENV}")"
return
fi
if __has_conda_env
then
printf "%s" "$(basename "${CONDA_DEFAULT_ENV}")"
return
fi
echo ""
}
# ----------------------------------------------------------------------------------------------------------------------
# Return the path sign.
#
# return string Path sign.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_get_path_sign() {
if fancygit_config_is "show_full_path" "true"
then
echo "\\w"
return
fi
echo "\\W"
}
# ----------------------------------------------------------------------------------------------------------------------
# Return the prompt time.
#
# return string Formated time.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_get_time() {
local time_format=""
if fancygit_config_is "show_time" "true"
then
time_format=$(fancygit_config_get "time_format" "%H:%M:%S")
echo "[$(date +"${time_format}")] "
return
fi
echo ""
}
# ----------------------------------------------------------------------------------------------------------------------
# Return double line configuration for PS1.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_get_double_line() {
if fancygit_config_is "double_line" "true"
then
printf "\n%s" "$(fancygit_config_get "ps2" "➜")"
fi
echo ""
}
# ----------------------------------------------------------------------------------------------------------------------
# Change color scheme.
# Show a warning in case the requested color scheme is not supported by current theme.
#
# param string $1 Theme name.
# param string $2 Corresponding color scheme.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_color_scheme_set() {
local param_color_scheme_name="$1"
local correspondent_color_scheme_theme
local color_scheme
local current_theme
correspondent_color_scheme_theme=$(echo "$param_color_scheme_name" | cut -d "_" -f 1)
color_scheme=$(echo "$param_color_scheme_name" | cut -d "_" -f 2)
current_theme=$(fancygit_config_get "theme" "default")
# If trying to set a color scheme that's not supported by current theme, show a warning message.
if [ "$current_theme" != "$correspondent_color_scheme_theme" ]
then
tput bold
tput setaf 3
printf "\n%s\n" "> Color scheme (--color-scheme-${color_scheme}) is not supported by current theme (--theme-${current_theme})."
printf "> Type \"fancygit --show-color-schemes\" to check available color schemes for current theme.\n\n"
tput sgr0
return
fi
fancygit_config_save "color_scheme" "$param_color_scheme_name"
}
# ----------------------------------------------------------------------------------------------------------------------
# Change theme.
# Show a message asking the user to reload the terminal.
#
# param string $1 Theme name.
# param string $2 Default theme color scheme.
# param string $3 (true|false) Show rich notification.
# ----------------------------------------------------------------------------------------------------------------------
fancygit_theme_set() {
local param_theme_name="$1"
local param_show_rich_notification="$2"
local current_theme
current_theme=$(fancygit_config_get "theme" "default")
if [ "$param_theme_name" = "$current_theme" ]
then
tput bold
tput setaf 3
printf "\n%s\n\n" "> You're already using --theme-${param_theme_name}"
tput sgr0
return
fi
fancygit_config_save "theme" "$param_theme_name"
fancygit_config_save "color_scheme" "${param_theme_name}_${param_theme_name}"
fancygit_config_save "show_rich_notification" "$param_show_rich_notification"
tput bold
tput setaf 3
printf "\n> Please reload the bash config file or close and open the terminal again.\n\n"
tput sgr0
}