#!/bin/bash # # Terminal emulator wrapper # source ~/.geometry || exit 1 if [ -z "$TITLE" ]; then if [ ! -z "$1" ]; then TITLE="$1" else TITLE="terminal" fi fi if [ ! -z "$GEOMETRY" ]; then DIMENSIONS="-g $GEOMETRY" fi if [ ! -z "$FONT" ]; then F_FONT="-F $FONT" FN_FONT="-fn $FONT" f_FONT="-f $FONT" fi if [ "$TERM" == "stterm" ]; then if [ ! -z "$1" ]; then stterm $f_FONT -T $TITLE -e bash -rcfile $HOME/.terminal -c "$*" else stterm $f_FONT -T $TITLE -e bash -rcfile $HOME/.terminal fi elif [ "$TERM" == "rxvt" ]; then if [ ! -z "$1" ]; then # Background color should be set at ~/.Xresources #rxvt-unicode -bg black +sb -fg white $FN_FONT $DIMENSIONS -title $TITLE \ rxvt-unicode +sb -fg white $FN_FONT $DIMENSIONS -title $TITLE \ -e bash -rcfile $HOME/.terminal -c "$*" else # Background color should be set at ~/.Xresources #rxvt-unicode -bg black +sb -fg white $FN_FONT $DIMENSIONS -title $TITLE \ rxvt-unicode +sb -fg white $FN_FONT $DIMENSIONS -title $TITLE \ -e bash -rcfile $HOME/.terminal fi elif [ "$TERM" == "Eterm" ]; then if [ ! -z "$1" ]; then Eterm --background-pixmap 0 --scrollbar 0 +sb -b black -f white $F_FONT --borderless no \ --buttonbar 0 $DIMENSIONS -n$TITLE -e bash -rcfile $HOME/.terminal -c "$*" else Eterm --background-pixmap 0 --scrollbar 0 +sb -b black -f white $F_FONT --borderless no \ --buttonbar 0 $DIMENSIONS -n$TITLE -e bash -rcfile $HOME/.terminal fi elif [ "$TERM" == "xterm" ]; then if [ ! -z "$1" ]; then xterm -u8 $FN_FONT -geometry $GEOMETRY -title $TITLE -e bash -c "$*" else xterm -u8 $FN_FONT -geometry $GEOMETRY -title $TITLE -e bash fi fi