omg/prompt.sh

151 lines
5.8 KiB
Bash
Raw Normal View History

2013-09-02 02:31:05 -04:00
function enrich {
flag=$1
symbol=$2
2013-09-02 13:00:26 -04:00
if [[ -n $3 ]]
then
coloron=$3
else
coloron=${on}
fi
if [[ $flag == true ]]; then color="${coloron}"; else color="${off}"; fi
2013-09-02 02:31:05 -04:00
PS1="${PS1}${color}${symbol} "
}
function build_prompt {
PS1=""
2013-09-03 02:35:50 -04:00
# Symbols
if [[ -z "${is_a_git_repo_symbol}" ]]; then is_a_git_repo_symbol="❤"; fi
if [[ -z "${has_untracked_files_symbol}" ]]; then has_untracked_files_symbol="∿"; fi
if [[ -z "${has_adds_symbol}" ]]; then has_adds_symbol="+"; fi
if [[ -z "${has_deletions_symbol}" ]]; then has_deletions_symbol="-"; fi
if [[ -z "${has_deletions_cached_symbol}" ]]; then has_deletions_cached_symbol="✖"; fi
if [[ -z "${has_modifications_symbol}" ]]; then has_modifications_symbol="✎"; fi
if [[ -z "${has_modifications_cached_symbol}" ]]; then has_modifications_cached_symbol="→"; fi
if [[ -z "${is_on_a_tag_symbol}" ]]; then is_on_a_tag_symbol="⌫"; fi
if [[ -z "${needs_to_merge_symbol}" ]]; then needs_to_merge_symbol="ᄉ"; fi
if [[ -z "${has_upstream_symbol}" ]]; then has_upstream_symbol="⇅"; fi
if [[ -z "${detached_symbol}" ]]; then detached_symbol="⚯"; fi
if [[ -z "${can_fast_forward_symbol}" ]]; then can_fast_forward_symbol="»"; fi
if [[ -z "${rebase_tracking_branch_symbol}" ]]; then rebase_tracking_branch_symbol="↶"; fi
if [[ -z "${merge_tracking_branch_symbol}" ]]; then merge_tracking_branch_symbol="ᄉ"; fi
if [[ -z "${finally}" ]]; then finally="\w ∙ "; fi
2013-09-02 13:00:26 -04:00
# Colors
2013-09-02 02:49:50 -04:00
on="\[\033[0;37m\]"
2013-09-02 02:31:05 -04:00
off="\[\033[1;30m\]"
2013-09-02 13:00:26 -04:00
alert="\[\033[0;31m\]"
2013-09-02 02:31:05 -04:00
branch_color="\[\033[0;34m\]"
blinking="\[\033[1;5;17m\]"
reset="\[\033[0m\]"
2013-09-02 13:00:26 -04:00
# Git info
current_commit_hash=$(git rev-parse HEAD 2> /dev/null)
current_commit_hash_abbrev=$(git rev-parse --short HEAD 2> /dev/null)
if [[ -n $current_commit_hash ]]; then is_a_git_repo=true; else is_a_git_repo=false; fi
number_of_logs=$(git log 2>/dev/null| wc -l)
current_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null);
if [[ $current_branch == "HEAD" ]]; then detached=true; else detached=false; fi
if [ $is_a_git_repo == true -a $number_of_logs == 0 ]; then just_init=true; fi
if [ $is_a_git_repo == true -a $number_of_logs -gt 0 ]; then
2013-09-02 13:00:26 -04:00
upstream=$(git rev-parse --symbolic-full-name --abbrev-ref @{upstream} 2> /dev/null)
if [[ $upstream != "@{upstream}" ]]; then has_upstream=true; else has_upstream=false; upstream=""; fi
2013-09-02 13:12:27 -04:00
number_of_modifications=$(git status --short 2> /dev/null|grep --count -e ^\.M)
if [[ ${number_of_modifications} -gt 0 ]] ; then has_modifications=true; else has_modifications=false; fi
2013-09-02 16:59:09 -04:00
number_of_adds=$(git status --short 2> /dev/null|grep --count -e ^\A)
if [[ ${number_of_adds} -gt 0 ]] ; then has_adds=true; else has_adds=false; fi
number_of_deletions=$(git status --short 2> /dev/null|grep --count -e ^.D)
if [[ ${number_of_deletions} -gt 0 ]] ; then has_deletions=true; else has_deletions=false; fi
number_of_deletions_cached=$(git status --short 2> /dev/null|grep --count -e ^D)
if [[ ${number_of_deletions_cached} -gt 0 ]] ; then has_deletions_cached=true; else has_deletions_cached=false; fi
number_of_modifications_cached=$(git status --short 2> /dev/null|grep --count -e ^[MA])
2013-09-02 13:12:27 -04:00
if [[ ${number_of_modifications_cached} -gt 0 ]] ; then has_modifications_cached=true; else has_modifications_cached=false; fi
2013-09-02 16:59:09 -04:00
2013-09-02 13:12:27 -04:00
number_of_untracked_files=$(git status --short 2> /dev/null|grep --count -e ^\?\?)
if [[ ${number_of_untracked_files} -gt 0 ]] ; then has_untracked_files=true; else has_untracked_files=false; fi
2013-09-02 02:49:50 -04:00
fi
2013-09-02 13:12:27 -04:00
2013-09-02 16:59:09 -04:00
# echo "is a git repo: ${is_a_git_repo}"
# echo "current commit hash: ${current_commit_hash}"
# echo "current branch: ${current_branch}"
# echo "is detached: ${detached}"
# echo "upstream branch: ${upstream}"
# echo "Has upstream: ${has_upstream}"
# echo "Has mofications: ${has_modifications}"
# echo "Has mofications_cached: ${has_modifications_cached}"
# echo "Has untracked files: ${has_untracked_files}"
# echo "Has deletions: ${has_deletions}"
# echo "Has adds: ${has_adds}"
#echo "Just init: ${just_init}"
2013-09-03 02:35:50 -04:00
2013-09-02 02:49:50 -04:00
if [[ ${is_a_git_repo} == true ]]
then
2013-09-03 02:35:50 -04:00
enrich ${is_a_git_repo} "${is_a_git_repo_symbol}"
enrich ${has_untracked_files} "${has_untracked_files_symbol}"
enrich ${has_adds} "${has_adds_symbol}"
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
enrich ${has_deletions} "${has_deletions_symbol}"
enrich ${has_deletions_cached} "${has_deletions_cached_symbol}"
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
enrich ${has_modifications} "${has_modifications_symbol}"
enrich ${has_modifications_cached} "${has_modifications_cached_symbol}"
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
needs_to_merge=true
2013-09-03 01:47:52 -04:00
can_fast_forward=true
will_merge=true
will_rebase=true
2013-09-03 01:54:15 -04:00
two_lines=true
2013-09-03 02:35:50 -04:00
is_on_a_tag=true
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
enrich ${is_on_a_tag} "${is_on_a_tag_symbol}"
enrich ${detached} "${detached_symbol}" "${alert}"
2013-09-02 16:59:09 -04:00
2013-09-03 02:35:50 -04:00
enrich ${needs_to_merge} "${needs_to_merge_symbol}" "${alert}"
enrich ${can_fast_forward} "${can_fast_forward_symbol}"
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
enrich ${has_upstream} "${has_upstream_symbol}"
2013-09-02 13:00:26 -04:00
if [[ ${detached} == true ]]
then
if [[ ${just_init} == true ]]; then
PS1="${PS1} ${alert}detached"
else
2013-09-03 02:35:50 -04:00
PS1="${PS1} ${on}(${current_commit_hash_abbrev})"
fi
2013-09-02 13:00:26 -04:00
else
2013-09-02 13:15:33 -04:00
if [[ $has_upstream == true ]]
then
2013-09-03 01:47:52 -04:00
2013-09-03 02:35:50 -04:00
# if [[ ${will_rebase} ]]; then type_of_upstream="${rebase_tracking_branch_symbol}"; fi
if [[ ${will_merge} ]]; then type_of_upstream="${merge_tracking_branch_symbol}"; fi
2013-09-03 01:47:52 -04:00
PS1="${PS1} ${on}(${current_branch} ${type_of_upstream} ${upstream//\/$current_branch/})"
2013-09-02 13:15:33 -04:00
else
PS1="${PS1} ${on}(${current_branch})"
fi
2013-09-02 13:00:26 -04:00
fi
2013-09-02 02:49:50 -04:00
fi
2013-09-03 01:54:15 -04:00
if [[ ${two_lines} ]]; then break="\n\r"; fi
2013-09-03 02:35:50 -04:00
PS1="${PS1}${reset}${break}${finally}"
}
#PREVIOUS_PROMPT=$PS1
PROMPT_COMMAND=build_prompt
2013-09-03 02:35:50 -04:00