summaryrefslogtreecommitdiff
path: root/etc/profile
diff options
context:
space:
mode:
Diffstat (limited to 'etc/profile')
-rw-r--r--etc/profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/profile b/etc/profile
index 88ba6a4..4abd99f 100644
--- a/etc/profile
+++ b/etc/profile
@@ -1,12 +1,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}"
+ 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 -c todo && gtd-todo
- calendar
+ check_com -c todo && [[ -r ~/var/gtd/todo ]] && gtd-todo
+ check_com -c calendar && [[ -r ~/stuff/calendar ]] && calendar
unset ZPROFILE
}