Skip to content

Instantly share code, notes, and snippets.

@squeedee
Created May 10, 2016 21:42
Show Gist options
  • Save squeedee/0bce62efc003415d0499676ef5466f7c to your computer and use it in GitHub Desktop.
Save squeedee/0bce62efc003415d0499676ef5466f7c to your computer and use it in GitHub Desktop.
olor "
diff --git a/plugins/available/cloud_foundry.plugin.bash b/plugins/available/cloud_foundry.plugin.bash
new file mode 100644
index 0000000..b650696
--- /dev/null
+++ b/plugins/available/cloud_foundry.plugin.bash
@@ -0,0 +1,12 @@
+cite about-plugin
+about-plugin 'Adds Cloud Foundry to PS1'
+
+function get_current_cloud_foundry_target() {
+ if `which -s cf` ; then
+ target=`cf target | grep Space | awk '{print $2}'`
+ if [[ $target =~ ^prod.*$ ]]; then
+ target=${echo_red}$target${echo_green}
+ fi
+ echo -n \|$target\|
+ fi
+}
diff --git a/themes/bobby/bobby.theme.bash b/themes/bobby/bobby.theme.bash
index 308b412..46b9a01 100644
--- a/themes/bobby/bobby.theme.bash
+++ b/themes/bobby/bobby.theme.bash
@@ -14,7 +14,7 @@ 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${yellow}$(ruby_version_prompt) ${purple}\h ${reset_color}in ${green}\w\n${bold_cyan}$(scm_char)${green}$(scm_prompt_info) ${green}→${reset_color} "
+ PS1="\n${yellow}$(ruby_version_prompt) ${purple}\h ${reset_color}in ${green}\w\n${bold_cyan}$(scm_char)${green}$(scm_prompt_info)$(get_current_cloud_foundry_target) ${green}→${reset_color} "
}
PROMPT_COMMAND=prompt_command;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment