X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshenv;h=57e45f21fbcf91929d7980bd147e468c7d8d4f8d;hb=78d890c776564875326d0ab41e8ed80ee1c6c0ab;hp=ee8329009ca3b6ef03fd1841faaa692d8482ffe9;hpb=3d6452fdfc44310b5615eaf61c95cab4c27d9bf8;p=grml-etc-core.git diff --git a/etc/zsh/zshenv b/etc/zsh/zshenv index ee83290..57e45f2 100644 --- a/etc/zsh/zshenv +++ b/etc/zsh/zshenv @@ -3,7 +3,6 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mit Jul 25 15:02:01 CEST 2007 [mika] ################################################################################ # This file is sourced on all invocations of the shell. # It is the 1st file zsh reads; it's read for every shell, @@ -58,7 +57,9 @@ if [[ -r /etc/gentoo-release ]] ; then else # support extra software in special directory outside of squashfs environment in live-cd mode if [[ -f /etc/grml_cd ]] ; then - [[ -d /cdrom/addons/ ]] && ADDONS=':/cdrom/addons/' + [[ -r /cdrom/addons ]] && ADDONS=':/cdrom/addons' + [[ -r /live/image/addons ]] && ADDONS=':/live/image/addons' + [[ -r /etc/grml/my_path ]] && ADDONS=":$(cat /etc/grml/my_path)" fi if (( EUID != 0 )); then @@ -68,13 +69,13 @@ else fi fi -# Solaris -# case $(uname 2>/dev/null) in -# SunOS) -# PATH="/usr/bin:/usr/sbin:/usr/ccs/bin:/usr/sfw/bin:/opt/sfw/bin:/opt/bin:/usr/local/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ucb:/usr/proc/bin:~/bin" -# # LD_LIBRARY_PATH="/opt/csw/lib:/opt/sfw/lib:/usr/lib:/usr/local/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/ucb/lib" -# # MANPATH="$MANPATH:/opt/csw/man:/usr/man:/usr/share/man:/usr/local/man:/opt/sfw/man" -#esac +# Solaris +case $(uname 2>/dev/null) in + SunOS) + PATH="/usr/bin:/usr/sbin:/usr/ccs/bin:/opt/SUNWspro/bin:/usr/ucb:/usr/sfw/bin:/usr/gnu/bin:/usr/openwin/bin:/opt/csw/bin:/opt/swf/bin:/sbin:/usr/sbin:~/bin" + # LD_LIBRARY_PATH="/opt/csw/lib:/opt/sfw/lib:/usr/lib:/usr/local/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/ucb/lib" + # MANPATH="$MANPATH:/opt/csw/man:/usr/man:/usr/share/man:/usr/local/man:/opt/sfw/man" +esac # less (:=pager) options: # export LESS=C @@ -85,16 +86,6 @@ elif [[ -x /usr/bin/lesspipe ]] ; then fi export READNULLCMD=${PAGER:-/usr/bin/pager} -# support termcap colors when using PAGER=less: -# TODO: move these to zshrc, they are only relevant in interactive shells -export LESS_TERMCAP_mb=$'\E[01;31m' -export LESS_TERMCAP_md=$'\E[01;31m' -export LESS_TERMCAP_me=$'\E[0m' -export LESS_TERMCAP_se=$'\E[0m' -export LESS_TERMCAP_so=$'\E[01;44;33m' -export LESS_TERMCAP_ue=$'\E[0m' -export LESS_TERMCAP_us=$'\E[01;32m' - # allow zeroconf for distcc export DISTCC_HOSTS="+zeroconf" @@ -102,3 +93,4 @@ export DISTCC_HOSTS="+zeroconf" export WRITE_ON_UDEV=yes ## END OF FILE ################################################################# +# vim:filetype=zsh foldmethod=marker autoindent expandtab shiftwidth=4