my.zsh/themes/lxsameer.zsh-theme

59 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-12-08 19:31:58 +00:00
# damn-mac.zsh-theme
2013-04-11 22:25:45 +01:00
#
# 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
2021-12-08 19:31:58 +00:00
echo "$ZSH_THEME_GIT_PROMPT_PREFIX %F{007}$(parse_git_dirty)%F{005}${ref#refs/heads/} %F{007}$ZSH_THEME_GIT_PROMPT_SUFFIX"
2013-04-11 22:25:45 +01:00
}
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
2021-12-08 19:31:58 +00:00
(( git = ${#git} - 34 - ${#clean} + 1 ))
2013-04-11 22:25:45 +01:00
else
2021-12-08 19:31:58 +00:00
(( git = ${#git} - 34 ))
2013-04-11 22:25:45 +01:00
fi
else
git=0
fi
local termwidth
2021-12-08 19:31:58 +00:00
(( termwidth = ${COLUMNS} - 3 - ${#$(get_pwd)} - ${git} ))
2013-04-11 22:25:45 +01:00
local spacing=" "
for i in {1..$termwidth}; do
spacing="${spacing}-"
done
echo $spacing
}
2021-12-08 19:31:58 +00:00
function user_prompt () {
2013-04-11 22:25:45 +01:00
if [ $UID != 0 ]; then
2021-12-08 19:31:58 +00:00
echo "%F{007}%F{002}> "
2013-04-11 22:25:45 +01:00
else
2021-12-08 19:31:58 +00:00
echo "%F{001}# "
2013-04-11 22:25:45 +01:00
fi
}
2016-04-23 12:58:27 +01:00
2013-04-11 22:25:45 +01:00
PROMPT='
2021-12-08 19:31:58 +00:00
%F{005}%~%F{008}$(spaces) $(my_git_prompt_info)
$(user_prompt)%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}]"