aboutsummaryrefslogtreecommitdiff
path: root/theme.bash
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-03-24 17:46:26 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-03-24 17:46:26 +0100
commit972d6f5e163c6e13c11be749601bb2701ee7d0ae (patch)
tree3a5b53e04a9efae14a0735e072c9e950aae2a882 /theme.bash
parentdc4306e6b5b8c5a59baa50dcf16632dccea4e338 (diff)
downloaddotfiles-972d6f5e163c6e13c11be749601bb2701ee7d0ae.tar.gz
removed bashit
Diffstat (limited to 'theme.bash')
-rw-r--r--theme.bash26
1 files changed, 0 insertions, 26 deletions
diff --git a/theme.bash b/theme.bash
deleted file mode 100644
index 648dfb6..0000000
--- a/theme.bash
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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 prompt_command() {
- #PS1="${bold_cyan}$(scm_char)${green}$(scm_prompt_info)${purple}$(ruby_version_prompt) ${yellow}\h ${reset_color}in ${green}\w ${reset_color}\n${green}→${reset_color} "
- #PS1="\n${purple}\h: ${reset_color} ${green}\w\n${bold_cyan}$(scm_char)${green}$(scm_prompt_info) ${green}→${reset_color} "
- #PS1="\n${cyan}\h: ${reset_color} ${yellow}\w\n${red}$(scm_char)${red}$(scm_prompt_info) ${green}→${reset_color} "
- local EXIT="$?"
- if [ $EXIT -eq 0 ]; then
- EXIT=""
- fi
- PS1="\n${cyan}\h:$(virtualenv_prompt) ${reset_color} ${yellow}\w ${green}$(scm_prompt_info)\n${red}${EXIT} ${reset_color}→ "
-}
-
-safe_append_prompt_command prompt_command