diff options
-rw-r--r-- | etc/env | 2 | ||||
-rw-r--r-- | etc/profile | 12 | ||||
-rw-r--r-- | etc/prompt | 2 |
3 files changed, 8 insertions, 8 deletions
@@ -1,7 +1,7 @@ ## vim:ft=zsh : ${ZDIR:=$HOME/packages/zsh/etc} -PS4='%F{cyan}%N%F{reset}:%F{yellow}%i%F{reset}│' +PS4='%F{cyan}%N%F{default}:%F{yellow}%i%F{default}│' fpath=($ZDIR/functions $ZDIR/completions $fpath) # Additional zshenv settings from pkg diff --git a/etc/profile b/etc/profile index 7c0d8f2..ed9a40d 100644 --- a/etc/profile +++ b/etc/profile @@ -2,15 +2,15 @@ setopt extended_glob function pr_info { - print -P "%F{cyan}>>%F{reset} $*" + print -P "%F{cyan}>>%F{default} $*" } echo -pr_info "This is %F{cyan}$(uname -srm)%F{reset} on %F{cyan}%y%F{reset}" -[[ -r /etc/gentoo-release ]] && pr_info "Running %F{cyan}Gentoo%F{reset} ${$(cat /etc/gentoo-release)#(#i)gentoo }" -[[ -r /etc/debian_version ]] && pr_info "Running %F{cyan}Debian%F{reset} $(cat /etc/debian_version)" -[[ -r /etc/arch-release ]] && pr_info "Running %F{cyan}Arch%F{reset}" -[[ -r /etc/redhat-release ]] && pr_info "Running %F{cyan}Redhat%F{reset}" +pr_info "This is %F{cyan}$(uname -srm)%F{default} on %F{cyan}%y%F{default}" +[[ -r /etc/gentoo-release ]] && pr_info "Running %F{cyan}Gentoo%F{default} ${$(cat /etc/gentoo-release)#(#i)gentoo }" +[[ -r /etc/debian_version ]] && pr_info "Running %F{cyan}Debian%F{default} $(cat /etc/debian_version)" +[[ -r /etc/arch-release ]] && pr_info "Running %F{cyan}Arch%F{default}" +[[ -r /etc/redhat-release ]] && pr_info "Running %F{cyan}Redhat%F{default}" echo [[ -n $(echo Maildir/new/*(N)) ]] && pr_info "You have mail!" @@ -11,7 +11,7 @@ typeset -A ps rps ps=( host "%F{yellow}%m" dir "%F{default}%30<…<%2v%>>" - sign "%(!.%F{red}.%F{green})%(?.%(!.#.>).%?)%F{reset}" + sign "%(!.%F{red}.%F{green})%(?.%(!.#.>).%?)%F{default}" screen $'%{\ek\e\\%}' ) |