my.zsh/themes/lxsameer.zsh-theme

57 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-04-11 22:25:45 +01:00
# lxsameer.zsh-theme
#
# Author: @lxsameer <lxsameer@gnu.org>
2013-05-06 15:49:28 +01:00
# Repo: https://github.com/lxsameer/My.Zsh
2013-04-11 22:25:45 +01:00
#
# Created on: Apr 10, 2012
function my_git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || \
ref=$(git rev-parse --short HEAD 2> /dev/null) || return
echo "$ZSH_THEME_GIT_PROMPT_PREFIX$(parse_git_dirty)${ref#refs/heads/}$ZSH_THEME_GIT_PROMPT_SUFFIX"
}
function get_pwd() {
echo "${PWD/$HOME/~}"
}
function spaces() {
local git=$(my_git_prompt_info)
if [ ${#git} != 0 ]; then
local clean=$(parse_git_dirty)
if [ ${#clean} != 0 ]; then
2013-05-06 15:49:28 +01:00
(( git = ${#git} - 13 - ${#clean} + 1 ))
2013-04-11 22:25:45 +01:00
else
2013-05-06 15:49:28 +01:00
(( git = ${#git} - 13 ))
2013-04-11 22:25:45 +01:00
fi
else
git=0
fi
local termwidth
(( termwidth = ${COLUMNS} - 3 - ${#$(get_pwd)} - ${git} ))
local spacing=" "
for i in {1..$termwidth}; do
spacing="${spacing}-"
done
echo $spacing
}
function user_sign () {
if [ $UID != 0 ]; then
2013-05-06 12:54:02 +01:00
echo "%F{027}»"
2013-04-11 22:25:45 +01:00
else
2013-05-06 12:54:02 +01:00
echo "%F{009}#"
2013-04-11 22:25:45 +01:00
fi
}
PROMPT='
2013-05-06 12:54:02 +01:00
%F{003}%~%F{008}$(spaces) $(my_git_prompt_info)
$(user_sign) %f'
2013-04-11 22:25:45 +01:00
# git settings
2013-05-06 12:54:02 +01:00
ZSH_THEME_GIT_PROMPT_PREFIX="%F{002}["
2013-04-11 22:25:45 +01:00
ZSH_THEME_GIT_PROMPT_CLEAN=""
2013-05-06 12:54:02 +01:00
ZSH_THEME_GIT_PROMPT_DIRTY="%F{003}*"
ZSH_THEME_GIT_PROMPT_SUFFIX="%F{002}]"