jeremyFreeAgent / oh-my-zsh-powerline-theme

oh-my-zsh Powerline style Theme
1.2k stars 254 forks source link

Enhancement: disable the right hand side completely #17

Closed flavius closed 11 years ago

flavius commented 11 years ago

Could you provide an option to disable the right hand-side completely? I am using tmux and it already displays everything I could wish (date, time, etc).

wujtruj commented 11 years ago

This can be done by commentig out last lines (starting with RPROMPT=...)

Or more elegant way, which nota bene will be coherent with this theme:

#=====beginning of a file
DISABLE_RPROMT="YES"

#=====last lines of a file
if [ "DISABLE_RPROMT" = "" ]; then
if [ "$POWERLINE_RIGHT_A" = "" ]; then
    RPROMPT="$POWERLINE_GIT_INFO_RIGHT%F{yellow}"$'\ue0b2'"%k%F{black}%K{yellow} $POWERLINE_RIGHT_B %f%k"
else
    RPROMPT="$POWERLINE_GIT_INFO_RIGHT%F{yellow}"$'\ue0b2'"%k%F{black}%K{yellow} $POWERLINE_RIGHT_B %f%F{240}"$'\ue0b2'"%f%k%K{240}%F{255} $POWERLINE_RIGHT_A %f%k"
fi
fi
flavius commented 11 years ago

Like in #18 ?

jeremyFreeAgent commented 11 years ago

Good idea!