head	1.15;
access;
symbols;
locks
	dunc:1.15; strict;
comment	@# @;


1.15
date	2006.03.12.23.56.43;	author dunc;	state Exp;
branches;
next	1.14;

1.14
date	2006.03.04.12.50.49;	author dunc;	state Exp;
branches;
next	1.13;

1.13
date	2003.11.26.21.44.01;	author dunc;	state Exp;
branches;
next	1.12;

1.12
date	2003.11.26.00.27.23;	author dunc;	state Exp;
branches;
next	1.11;

1.11
date	2003.02.19.23.10.51;	author dunc;	state Exp;
branches;
next	1.10;

1.10
date	2003.01.14.21.59.43;	author dunc;	state Exp;
branches;
next	1.9;

1.9
date	2003.01.05.04.56.01;	author dunc;	state Exp;
branches;
next	1.8;

1.8
date	2002.05.10.02.41.05;	author duncanr;	state Exp;
branches;
next	1.7;

1.7
date	2002.04.30.06.08.49;	author duncanr;	state Exp;
branches;
next	1.6;

1.6
date	2002.04.30.03.44.15;	author duncanr;	state Exp;
branches;
next	1.5;

1.5
date	2002.04.30.03.42.35;	author duncanr;	state Exp;
branches;
next	1.4;

1.4
date	2002.04.26.02.49.31;	author duncanr;	state Exp;
branches;
next	1.3;

1.3
date	2002.04.26.02.31.11;	author duncanr;	state Exp;
branches;
next	1.2;

1.2
date	2002.02.20.05.51.34;	author duncanr;	state Exp;
branches;
next	1.1;

1.1
date	2001.12.14.03.31.42;	author duncanr;	state Exp;
branches;
next	;


desc
@@


1.15
log
@Make lxt bigger
@
text
@#!/bin/sh
j=`basename $0`
if [ $j = lxt ];then
  size=88x54
  font="-font 10x20"
else
  size=88x72
  font="-font 7x14"
fi
if [ "$1" = -cd ];then
  shift
  if [ -z "$1" ];then
    cd
  else
    if [ -d "$1" ];then
      cd "$1"
      shift
    else
      echo "Not a directory. $2" >&2
      exit 1
    fi
  fi
fi
if [ -z "$1" ];then
  i=$size
else
  if [ "$1" = "-" ];then
    i=$size
  else
    i=$1
  fi
  shift
fi
SHLVL=0 /usr/X11R6/bin/xterm -rw -ls -sl 2000 -sb -geometry $i $font "$@@" &
@


1.14
log
@1600x1200
@
text
@d4 1
a4 1
  size=88x34
d13 1
a13 1
	cd
d15 7
a21 7
	if [ -d "$1" ];then
	  cd "$1"
	  shift
	else
	  echo "Not a directory. $2" >&2
	  exit 1
	fi
d28 1
a28 1
	i=$size
d30 1
a30 1
	i=$1
@


1.13
log
@Use full pathname of xterm (for default slackware installation)
@
text
@d7 1
a7 1
  size=88x52
d13 1
a13 1
    cd
d15 7
a21 7
    if [ -d "$1" ];then
      cd "$1"
      shift
    else
      echo "Not a directory. $2" >&2
      exit 1
    fi
d28 1
a28 1
    i=$size
d30 1
a30 1
    i=$1
@


1.12
log
@color_xterm+>xterm
@
text
@d34 1
a34 1
SHLVL=0 xterm -rw -ls -sl 2000 -sb -geometry $i $font "$@@" &
@


1.11
log
@Always start with a login shell
@
text
@d34 1
a34 1
SHLVL=0 color_xterm -rw -ls -sl 2000 -sb -geometry $i $font "$@@" &
@


1.10
log
@Enable reverse wraparound
@
text
@d34 1
a34 1
SHLVL=0 color_xterm -rw -sl 2000 -sb -geometry $i $font "$@@" &
@


1.9
log
@Adapted from OSE
@
text
@d34 1
a34 1
SHLVL=0 color_xterm -sl 2000 -sb -geometry $i $font "$@@" &
@


1.8
log
@Values for 1024x769 screen
@
text
@d8 1
a8 1
  font=
d34 1
a34 1
SHLVL=0 xterm -sl 5000 -sb -geometry $i $font "$@@" &
@


1.7
log
@No need to exec xterm cos we background it anyway
@
text
@d4 1
a4 1
  size=88x39
d7 1
a7 1
  size=88x59
@


1.6
log
@Need to export SHLVL properly before doing exec xterm for Sun /bin/sh
@
text
@d34 1
a34 3
SHLVL=0
export SHLVL
exec xterm -sl 5000 -sb -geometry $i $font "$@@" &
@


1.5
log
@Allow "-cd <dir>" at front; try exec of xterm
@
text
@d34 3
a36 1
SHLVL=0 exec xterm -sl 5000 -sb -geometry $i $font "$@@" &
@


1.4
log
@First arg can be "-" instead of geometry (so more args amy follow)
@
text
@d10 14
d34 1
a34 1
SHLVL=0 xterm -sl 5000 -sb -geometry $i $font "$@@" &
@


1.3
log
@Start large font if invoked as "lxt"
@
text
@d10 10
a19 1
[ -z "$*" ] && i=$size || i=
@


1.2
log
@1st arg if present is window geometry
@
text
@d2 10
a11 2
[ -z "$*" ] && i="88x64" || i=
SHLVL=0 xterm -sl 5000 -sb -geometry $i "$@@" &
@


1.1
log
@Initial revision
@
text
@d2 2
a3 1
SHLVL=0 xterm -sl 5000 -sb -geometry 88x64 &
@
