diff options
-rw-r--r-- | etc/hosts/profile-nemesis | 6 | ||||
l--------- | etc/hosts/profile-saviour | 1 | ||||
-rw-r--r-- | etc/profile | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/etc/hosts/profile-nemesis b/etc/hosts/profile-nemesis new file mode 100644 index 0000000..2b06433 --- /dev/null +++ b/etc/hosts/profile-nemesis @@ -0,0 +1,6 @@ +## vim:ft=zsh +if [[ ! -e /tmp/.afterboot ]] { + touch /tmp/.afterboot + unsetopt bg_nice + startx &! exit +} diff --git a/etc/hosts/profile-saviour b/etc/hosts/profile-saviour new file mode 120000 index 0000000..193e6be --- /dev/null +++ b/etc/hosts/profile-saviour @@ -0,0 +1 @@ +profile-nemesis
\ No newline at end of file diff --git a/etc/profile b/etc/profile index ed9a40d..6f34cb9 100644 --- a/etc/profile +++ b/etc/profile @@ -15,5 +15,6 @@ echo [[ -n $(echo Maildir/new/*(N)) ]] && pr_info "You have mail!" [[ -r $ZDIR/local-profile ]] && source $ZDIR/local-profile +[[ -r $ZDIR/hosts/profile-$HOST ]] && source $ZDIR/hosts/profile-$HOST unfunction pr_info |