#!/usr/bin/env bash

DIM=84x29	# ideal for 1024 x 768

# FN=fixed
FN=-xos4-terminus-bold-r-normal--16-160-72-72-c-80-iso8859-1

if [ -z "$XTERM" ]; then
	# XTERM=rxvt
	XTERM=xterm
fi

# BG='#203040'
# BG='#101010'
# BG='#0A0A0A'
# BG=black
# BG=darkred

# Just a little bit of contrast such that terminals show up
# properly against a black Emacs frame.
BG='#0C0C0C'

if [ "$HOSTNAME" == zoo ]; then
	DIM=118x34
fi

if [ "$HOSTNAME" == moms ]; then
	DIM=118x34
fi


exec $XTERM \
	-bg $BG \
	-fg white \
	-geometry $DIM \
	-fn $FN +sb $*

#	-tr \
#	-geometry 94x32 \
#	-bg \#102030 \
#	-fg \#f0e0d0 \
