-
Notifications
You must be signed in to change notification settings - Fork 64
/
prompt.sh
32 lines (29 loc) · 1.17 KB
/
prompt.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
#!/bin/bash
#
# Author: Diogo Alexsander Cavilha <[email protected]>
# Date: 06.11.2018
#
# Changes de prompt by loading the style configured in ~/.fancygit/app_config file.
# shellcheck source=/dev/null
. "$HOME/.fancy-git/fancygit-completion"
. "$HOME/.fancy-git/aliases"
. "$HOME/.fancy-git/version.sh"
. "$HOME/.fancy-git/modules/settings-manager.sh"
. "$HOME/.fancy-git/modules/git-manager.sh"
. "$HOME/.fancy-git/modules/update-manager.sh"
. "$HOME/.fancy-git/commands-handler.sh"
. "$HOME/.fancy-git/theme-functions.sh"
# ----------------------------------------------------------------------------------------------------------------------
# The main FanyGit function. It changes the prompt according to the switched theme.
# ----------------------------------------------------------------------------------------------------------------------
function fancygit_theme_handler() {
case "$(fancygit_config_get "theme" "default")" in
"default")
. "$HOME/.fancy-git/themes/default.sh";;
"human")
. "$HOME/.fancy-git/themes/human.sh";;
"simple")
. "$HOME/.fancy-git/themes/simple.sh";;
esac
}
fancygit_theme_handler