diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-27 18:17:05 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-27 18:18:13 +0100 |
commit | 5789a2cfcccd4b8ec5ec33645319e322ace863b0 (patch) | |
tree | 28697223124c2c87660abe93274de504ec22b28b /etc/profile | |
parent | b2700fba3e4d6218677b9a78f1df89a39b5c1a08 (diff) |
Fixed possibly invaled ZLE colors
Diffstat (limited to 'etc/profile')
-rw-r--r-- | etc/profile | 12 |
1 files changed, 6 insertions, 6 deletions
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!" |