From a73d678b08d26a2755759c74c594238d111cd8b1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 1 Mar 2009 20:39:05 +0100 Subject: profile: Take a bit more space, and print operating system --- etc/profile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'etc') diff --git a/etc/profile b/etc/profile index 818d7f9..44ec38a 100644 --- a/etc/profile +++ b/etc/profile @@ -1,5 +1,17 @@ ## vim:ft=zsh source $HOME/packages/zsh/etc/colors -print -P "${info}>>${reset} this is ${info}$(uname -srm)${reset} on ${info}%y${reset}" -[[ -n $(echo Maildir/new/*(N)) ]] && echo "${info}>>${reset} You have mail!" + +function pr_info { + print -P "${info}>>${reset} $*" +} + +echo +pr_info "This is ${info}$(uname -srm)${reset} on ${info}%y${reset}" +[[ -r /etc/gentoo-release ]] && pr_info "Running ${info}Gentoo${reset}" +[[ -r /etc/debian_version ]] && pr_info "Running ${info}Debian${reset} $(cat /etc/debian_version)" +echo + +[[ -n $(echo Maildir/new/*(N)) ]] && pr_info "You have mail!" [[ -r $HOME/packages/zsh/etc/local-profile ]] && source $HOME/packages/zsh/etc/local-profile + +unfunction pr_info -- cgit v1.2.3