1
0
mirror of https://github.com/akelge/zsh synced 2025-07-03 13:09:07 +00:00

Remove useless fancyTerm, dust and repo_char functions

Removed functions, some prompts; rewrite prompts not to use fancyTerm
This commit is contained in:
2021-10-27 16:05:28 +02:00
parent 4bc0575d66
commit 360ae5fa01
9 changed files with 0 additions and 105 deletions

View File

@ -1,17 +1,5 @@
function prompt_minimal_setup {
# Setup PROMPT
if `fancyTerm`; then
# We are on xterminal
W="%n@%m:%."
I="%m:%."
L="%B%. %#%b "
PS1="%{]2;$W%}%{]1;$I%}$L"
unset W I L
else
# We are not on xterminal
PS1="%B%. %#%b "
fi
}
prompt_minimal_setup