diff options
author | jkh <jkh@FreeBSD.org> | 1995-12-01 20:12:05 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-12-01 20:12:05 +0000 |
commit | 1bc25004b3a9dc54c0e01eea1461de061b34da12 (patch) | |
tree | 7d5ce3e042d5a5982a43a6785eec6294745d8d1c | |
parent | f0378d7d2fba3b8fc0a0ad0029bfea70b29536bf (diff) | |
download | FreeBSD-src-1bc25004b3a9dc54c0e01eea1461de061b34da12.zip FreeBSD-src-1bc25004b3a9dc54c0e01eea1461de061b34da12.tar.gz |
Rip these things down to the absolutely minimums - no tsets, no
sttys, no fancy prompts, nothing. Everything else seems to be
too contraversal, so we'll go vanilla.
-rw-r--r-- | etc/root/dot.cshrc | 17 | ||||
-rw-r--r-- | etc/root/dot.login | 2 | ||||
-rw-r--r-- | etc/root/dot.profile | 6 | ||||
-rwxr-xr-x | etc/root/dot.xsession | 2 |
4 files changed, 1 insertions, 26 deletions
diff --git a/etc/root/dot.cshrc b/etc/root/dot.cshrc index 80c2964..7d5c6f6 100644 --- a/etc/root/dot.cshrc +++ b/etc/root/dot.cshrc @@ -12,25 +12,8 @@ setenv BLOCKSIZE K if ($?prompt) then # An interactive shell -- set some stuff up - - set noglob; eval `tset -s`; unset noglob - stty -istrip - set filec set history = 100 set savehist = 100 set mail = (/var/mail/$USER) - - # customize prompt - works with tcsh only - set machine = `hostname -s` - if ("$TERM" == xterm) then - alias cwdcmd 'echo -n "]0;${USER}@${machine}: `dirs`"' - set prompt = "> " - else - alias cwdcmd 'set prompt = "${USER}@${machine}:${cwd}> "' - endif - cwdcmd - - # fix broken prompt after su - alias su 'su \!* ; cwdcmd' endif diff --git a/etc/root/dot.login b/etc/root/dot.login index d1008cb..3c6fd00 100644 --- a/etc/root/dot.login +++ b/etc/root/dot.login @@ -1,8 +1,6 @@ # csh .login file # -stty crt erase -# PATH und MANPATH Grundeinstellung set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/bin /usr/X11R6/bin $HOME/bin) setenv MANPATH "/usr/share/man:/usr/X11R6/man:/usr/local/man" diff --git a/etc/root/dot.profile b/etc/root/dot.profile index 7789cda..f333910 100644 --- a/etc/root/dot.profile +++ b/etc/root/dot.profile @@ -1,10 +1,6 @@ -# $Id: dot.profile,v 1.7 1994/09/22 08:32:39 rgrimes Exp $ +# $Id: dot.profile,v 1.8 1994/10/27 05:27:00 phk Exp $ # PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin -echo 'erase ^H, kill ^U, intr ^C' -stty crt erase ^H kill ^U intr ^C export PATH -HOME=/root -export HOME TERM=cons25 export TERM diff --git a/etc/root/dot.xsession b/etc/root/dot.xsession index 588ee3a..4bacce0 100755 --- a/etc/root/dot.xsession +++ b/etc/root/dot.xsession @@ -2,12 +2,10 @@ # X startup file .xsession # -# PATH und MANPATH Grundeinstellung PATH="/sbin:/bin:/usr/bin:/usr/sbin:/usr/games:/usr/local/bin:/usr/X11R6/bin:$HOME/bin" MANPATH="/usr/share/man:/usr/X11R6/man:/usr/local/man" export PATH MANPATH -# Einstellungen fuer Interviews CPU="FREEBSD" PATH="$PATH:/usr/local/interviews/bin/$CPU" MANPATH="$MANPATH:/usr/local/interviews/man" |