41 lines
1.0 KiB
Bash
41 lines
1.0 KiB
Bash
# Theme
|
||
# Install powerline font
|
||
SPACESHIP_PROMPT_ORDER=(
|
||
user # Username section
|
||
dir # Current directory section
|
||
host # Hostname section
|
||
git # Git section (git_branch + git_status)
|
||
hg # Mercurial section (hg_branch + hg_status)
|
||
exec_time # Execution time
|
||
line_sep # Line break
|
||
vi_mode # Vi-mode indicator
|
||
jobs # Background jobs indicator
|
||
exit_code # Exit code section
|
||
char # Prompt character
|
||
)
|
||
|
||
|
||
SPACESHIP_PROMPT_ADD_NEWLINE=false
|
||
SPACESHIP_PROMPT_SEPARATE_LINE=false
|
||
SPACESHIP_CHAR_SYMBOL="❯"
|
||
SPACESHIP_CHAR_SUFFIX=" "
|
||
|
||
# Simplify prompt if we're using Hyper
|
||
if [[ "$TERM_PROGRAM" == "Hyper" ]]; then
|
||
SPACESHIP_PROMPT_SEPARATE_LINE=false
|
||
SPACESHIP_DIR_SHOW=false
|
||
SPACESHIP_GIT_BRANCH_SHOW=false
|
||
fi
|
||
|
||
case "x$(lsb_release -d -s)" in
|
||
"xAstra Linux SE 1.5 (Smolensk)" )
|
||
antibody bundle nojhan/liquidprompt
|
||
;;
|
||
"xDebian GNU/Linux 8.11 (jessie)" )
|
||
antibody bundle nojhan/liquidprompt
|
||
;;
|
||
* )
|
||
antibody bundle denysdovhan/spaceship-prompt
|
||
;;
|
||
esac
|