mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
101 lines
3.5 KiB
Bash
101 lines
3.5 KiB
Bash
#! bash oh-my-bash.module
|
|
# port of zork theme
|
|
|
|
# set colors for use throughout the prompt
|
|
# i like things consistent
|
|
OMB_THEME_BRACKET_COLOR="${OMB_THEME_BRACKET_COLOR-${_omb_prompt_navy}}"
|
|
OMB_THEME_STRING_COLOR="${OMB_THEME_STRING_COLOR-${_omb_prompt_green}}"
|
|
|
|
SCM_THEME_PROMPT_PREFIX=""
|
|
SCM_THEME_PROMPT_SUFFIX=""
|
|
|
|
SCM_THEME_PROMPT_DIRTY=" ${_omb_prompt_bold_brown}✗${_omb_prompt_normal}"
|
|
SCM_THEME_PROMPT_CLEAN=" ${_omb_prompt_bold_green}✓${_omb_prompt_normal}"
|
|
SCM_GIT_CHAR="${OMB_THEME_STRING_COLOR}±${_omb_prompt_normal}"
|
|
SCM_SVN_CHAR="${_omb_prompt_bold_teal}⑆${_omb_prompt_normal}"
|
|
SCM_HG_CHAR="${_omb_prompt_bold_brown}☿${_omb_prompt_normal}"
|
|
|
|
PROMPT_CHAR="${OMB_THEME_BRACKET_COLOR}➞ ${_omb_prompt_normal}"
|
|
if [[ $OSTYPE == *darwin* ]]; then
|
|
PROMPT_CHAR="${OMB_THEME_BRACKET_COLOR}➞ ${_omb_prompt_normal}"
|
|
fi
|
|
|
|
#Mysql Prompt
|
|
export MYSQL_PS1="(\u@\h) [\d]> "
|
|
|
|
TITLEBAR=""
|
|
case $TERM in
|
|
xterm*) TITLEBAR="\[\033]0;\w\007\]" ;;
|
|
esac
|
|
|
|
|
|
function __my_rvm_ruby_version {
|
|
local gemset ; gemset=$(awk -F'@' '{print $2}' <<< "${GEM_HOME}")
|
|
local version ; version=$(awk -F'-' '{print $2}' <<< "${MY_RUBY_HOME}")
|
|
[ "${gemset}" != "" ] && gemset="@${gemset}"
|
|
local full="${version}${gemset}"
|
|
[ "${full}" != "" ] \
|
|
&& echo "${OMB_THEME_BRACKET_COLOR}[${OMB_THEME_STRING_COLOR}${full}${OMB_THEME_BRACKET_COLOR}]${_omb_prompt_normal}"
|
|
}
|
|
|
|
function is_vim_shell {
|
|
if [ -n "${VIMRUNTIME}" ] ; then
|
|
echo "${OMB_THEME_BRACKET_COLOR}[${OMB_THEME_STRING_COLOR}vim shell${OMB_THEME_BRACKET_COLOR}]${_omb_prompt_normal}"
|
|
fi
|
|
}
|
|
|
|
function is_integer { # helper function to make sure input is an integer
|
|
[ "$1" -eq "$1" ] > /dev/null 2>&1
|
|
return $?
|
|
}
|
|
|
|
# XXX do we need/want to integrate with todo.sh? We don't provide it and I
|
|
# can't find a version online that accepts ls as an input
|
|
function todo_txt_count {
|
|
if _omb_util_command_exists todo.sh; then # is todo.sh installed
|
|
local count=$(todo.sh ls \
|
|
| awk '/TODO: [0-9]+ of ([0-9]+) tasks shown/ { print $4 }')
|
|
if is_integer "${count}" ; then # did we get a sane answer back
|
|
echo "${OMB_THEME_BRACKET_COLOR}[${OMB_THEME_STRING_COLOR}T:$count${OMB_THEME_BRACKET_COLOR}]$_omb_prompt_normal"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
function modern_scm_prompt {
|
|
local CHAR=$(scm_char)
|
|
if [ ! "${CHAR}" = "${SCM_NONE_CHAR}" ] ; then
|
|
printf "%s" \
|
|
"${OMB_THEME_BRACKET_COLOR}[${CHAR}${OMB_THEME_BRACKET_COLOR}]" \
|
|
"[${OMB_THEME_STRING_COLOR}$(scm_prompt_info)${OMB_THEME_BRACKET_COLOR}]$_omb_prompt_normal"
|
|
printf "\n"
|
|
fi
|
|
}
|
|
|
|
function _omb_theme_PROMPT_COMMAND {
|
|
local my_host="${OMB_THEME_STRING_COLOR}\h${_omb_prompt_normal}";
|
|
local my_user="${OMB_THEME_STRING_COLOR}\u${_omb_prompt_normal}";
|
|
local my_path="${OMB_THEME_STRING_COLOR}\w${_omb_prompt_normal}";
|
|
local bracket_c="${OMB_THEME_BRACKET_COLOR}"
|
|
|
|
local line2 ; line2="${bracket_c}└─$(todo_txt_count)${PROMPT_CHAR}"
|
|
# nice prompt
|
|
case "$(id -u)" in
|
|
0)
|
|
my_user="${_omb_prompt_bold_brown}\u${_omb_prompt_normal}";
|
|
line2="${bracket_c}└─${PROMPT_CHAR}"
|
|
;;
|
|
esac
|
|
|
|
PS1="${TITLEBAR}"
|
|
PS1="${PS1}${bracket_c}┌─[${my_user}${bracket_c}][$my_host${bracket_c}]"
|
|
PS1="${PS1}$(modern_scm_prompt)"
|
|
PS1="${PS1}$(__my_rvm_ruby_version)"
|
|
PS1="${PS1}${bracket_c}[${my_path}${bracket_c}]$(is_vim_shell)"
|
|
PS1="${PS1}\n${line2}"
|
|
}
|
|
|
|
PS2="└─${PROMPT_CHAR}"
|
|
PS3=">> "
|
|
|
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|