summaryrefslogtreecommitdiffstats
path: root/.zsh/rc/99greetings
blob: 47cf822811f0d27fcb73ba68a7f845925a57d5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# machine dependent stuff
. $HOME/.private_stuff.zsh
#--------------------
# Greetings
#--------------------
#cat /etc/motd
#echo -e "${CYAN}Welcome to ZSH ${RED}${ZSH_VERSION}$NC"
sysinfo
# don't want to read the same every time I open a new shell
if [ -x /usr/bin/fortune ]; then
    /usr/bin/fortune -s     
fi
echo 

# vim: set ft=zsh: