summaryrefslogtreecommitdiff
path: root/themes/frisk.zsh-theme
diff options
context:
space:
mode:
authorPablo Rubianes <pablorubianes@gmail.com>2013-11-06 20:16:09 -0200
committerPablo Rubianes <pablorubianes@gmail.com>2013-11-06 20:16:09 -0200
commit248890b6e699365dee469178ec96f5d1fad91871 (patch)
tree2d523eef2c5f0d2a83938302cfdb433930e3a2a3 /themes/frisk.zsh-theme
parentefc37c1f715eb77be5f30411fa36589727643126 (diff)
downloadzsh-248890b6e699365dee469178ec96f5d1fad91871.tar.gz
zsh-248890b6e699365dee469178ec96f5d1fad91871.tar.bz2
zsh-248890b6e699365dee469178ec96f5d1fad91871.zip
Modification to the frisk theme to work with the BZR lib
Diffstat (limited to 'themes/frisk.zsh-theme')
-rw-r--r--themes/frisk.zsh-theme10
1 files changed, 0 insertions, 10 deletions
diff --git a/themes/frisk.zsh-theme b/themes/frisk.zsh-theme
index 2c999a6a6..653c7461f 100644
--- a/themes/frisk.zsh-theme
+++ b/themes/frisk.zsh-theme
@@ -10,13 +10,3 @@ ZSH_THEME_GIT_PROMPT_PREFIX=$ZSH_THEME_SCM_PROMPT_PREFIX$GIT_CB
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-## Bazaar integration
-bzr_prompt_info() {
- BZR_CB=`bzr nick 2> /dev/null | grep -v "ERROR" | cut -d ":" -f2 | awk -F / '{print "bzr::"$1}'`
- if [ -n "$BZR_CB" ]; then
- BZR_DIRTY=""
- [[ -n `bzr status` ]] && BZR_DIRTY="%{$fg[red]%} *%{$reset_color%}"
- echo "$ZSH_THEME_SCM_PROMPT_PREFIX$BZR_CB$BZR_DIRTY$ZSH_THEME_GIT_PROMPT_SUFFIX"
- fi
-}