diff --git a/themes/emperor/emperor.theme.bash b/themes/emperor/emperor.theme.bash new file mode 100644 index 00000000..8d9313b2 --- /dev/null +++ b/themes/emperor/emperor.theme.bash @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +SCM_THEME_PROMPT_DIRTY=" ${red}✗" +SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓" +SCM_THEME_PROMPT_PREFIX=" |" +SCM_THEME_PROMPT_SUFFIX="${green}|" + +GIT_THEME_PROMPT_DIRTY=" ${red}✗" +GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓" +GIT_THEME_PROMPT_PREFIX=" ${green}|" +GIT_THEME_PROMPT_SUFFIX="${green}|" + +RVM_THEME_PROMPT_PREFIX="|" +RVM_THEME_PROMPT_SUFFIX="|" + +function get_hour_color { + hour_color=$red + min=$(date +%M) + if [ "$min" -lt "15" ]; then + hour_color=$white + elif [ "$min" -lt "30" ]; then + hour_color=$green + elif [ "$min" -lt "45" ]; then + hour_color=$yellow + else + hour_color=$red + fi + echo "$hour_color" +} + +function prompt_command() { + PS1="\n$(get_hour_color)$(date +%H) ${purple}\h ${reset_color}in ${prompt_color}\w\n${bold_cyan}$(scm_char)${green}$(scm_prompt_info) ${green}→${reset_color} " +} + +PROMPT_COMMAND=prompt_command;