summaryrefslogtreecommitdiff
path: root/etc/profile
blob: 2ce39485f36e177611ff1c12e4d7ca3f17948673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## vim:ft=zsh
if (( ZPROFILE == 0 )) {
	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!"
	[[ -r $HOME/packages/zsh/etc/local-profile ]] && source $HOME/packages/zsh/etc/local-profile
	ZPROFILE=1
} else {
	check_com todo && gtd-todo
	calendar
	unset ZPROFILE
}