organize the repo

remove unused files
create config file
update dotfiles
update ebuild
This commit is contained in:
Martinez 2015-12-26 16:00:20 +01:00
parent 1c38428f6b
commit 10345f6e3a
13 changed files with 178 additions and 975 deletions

View file

@ -1,29 +0,0 @@
#! /bin/zsh
OVER_PROMPT_CFG="/etc/over/prompt.cfg"
if [[ -a "$OVER_PROMPT_CFG" ]]; then
source "$OVER_PROMPT_CFG"
fi
function set_title {
if [[ ${TERM} == "screen-bce" || ${TERM} == "screen" ]]; then
print -Pn "\033k\033${@}\033\134"
fi
}
function preexec {
local -a cmd
cmd=(${(z)1})
set_title "${PWD}: ${cmd}"
}
function precmd {
set_title "${PWD}"
python3 ./render.py $? $COLUMNS 1.25 2.5 0.15 0.05
PS1="$(print "%(?.%{\e[1;36m%}.%{\e[1;31m%}%?%{\e[0m%}:%{\e[1;31m%})%(\!.#.$)%{\e[0m%} ")"
}
unset OVER_PROMPT_CFG
unset RPS1