improved documentation about startup of zsh; added function ytdl; work around non...
[grml-etc-core.git] / etc / zsh / zshenv
1 # Filename:      zshenv
2 # Purpose:       system-wide .zshenv file for zsh(1)
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 # Latest change: Sam Feb 24 18:59:11 CET 2007 [mika]
7 ################################################################################
8 # This file is sourced on all invocations of the shell.
9 # It is the 1st file zsh reads; it's read for every shell,
10 # even if started with -f (setopt NO_RCS), all other
11 # initialization files are skipped.
12 #
13 # This file should contain commands to set the command
14 # search path, plus other important environment variables.
15 # This file should not contain commands that produce
16 # output or assume the shell is attached to a tty.
17 #
18 # Notice: .zshenv is the same, execpt that it's not read
19 # if zsh is started with -f
20 #
21 # Global Order: zshenv, zprofile, zshrc, zlogin
22 ################################################################################
23
24 # language settings (read in /etc/environment before /etc/default/locale as
25 # the latter one is the default on Debian nowadays)
26   [ -r /etc/environment    ] && source /etc/environment
27   [ -r /etc/default/locale ] && source /etc/default/locale
28   [ -n "$LANG" ]          && export LANG || export LANG="en_US.iso885915"
29   [ -n "$LC_ALL" ]        && export LC_ALL
30   [ -n "$LC_MESSAGES" ]   && export LC_MESSAGES
31
32   [ -r /etc/sysconfig/keyboard ] && source /etc/sysconfig/keyboard
33
34 # set environment variables (important for autologin on tty)
35   [ -z "$HOSTNAME" ]      && export HOSTNAME=`hostname`
36   [ -z "$USER" ]          && export USER=`id -un`
37   [[ $LOGNAME == LOGIN ]] && LOGNAME=$(id -un)
38
39 # workaround for live-cd mode as $HOME is not set via rungetty
40   if [ -f /etc/grml_cd ] ; then
41     if (( EUID == 0 )); then
42        export HOME=/root
43     else
44        export HOME=/home/$USER
45     fi
46   fi
47
48 # set $PATH
49 # gentoo users have to source /etc/profile.env
50   if [ -r /etc/gentoo-release ] ; then
51      [ -r /etc/profile.env ] && source /etc/profile.env
52        if (( EUID != 0 )); then
53           PATH="$HOME/bin:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/games:/usr/NX/bin:$PATH"
54        else
55           PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/NX/bin:$PATH"
56        fi
57   else
58     # support extra software in special directory outside of squashfs environment in live-cd mode
59     if [ -f /etc/grml_cd ] ; then
60        [ -d /cdrom/addons/ ] && ADDONS=':/cdrom/addons/'
61     fi
62     if (( EUID != 0 )); then
63       PATH="$HOME/bin:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/games:/usr/NX/bin$ADDONS"
64     else
65       PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/NX/bin$ADDONS"
66     fi
67 #  fi
68   fi
69
70 # less (:=pager) options:
71 #  export LESS=C
72   export LESSOPEN="|lesspipe.sh %s"
73   export READNULLCMD=${PAGER:-/usr/bin/pager}
74
75 # allow zeroconf for distcc
76   export DISTCC_HOSTS="+zeroconf"
77
78 # MAKEDEV should be usable on udev as well by default:
79   export WRITE_ON_UDEV=yes
80
81 ## END OF FILE #################################################################