#!/bin/bash

# WindowMaker-Terminal

# (c) 2000 MandrakeSoft - David BAUDENS <baudens@mandrakesoft.com>
# (c) 2001, 2002 Alexey Voinov <voins@voins.program.ru>
# Licence: GPL

# Launch the default terminal emulator in Window Maker Dock and allows user
# to lauch another (and another and another etc.) with a simple double click

WMTERMOPT="-bg black -fg grey -fn -*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
WMTERMCONFIG=/etc/X11/wmterminal
WMTERMLOCAL=~/.wmterminal

[ -r $WMTERMCONFIG ] && source $WMTERMCONIFG
[ -r $WMTERMLOCAL ] && source $WMTERMLOCAL

[ -z "$WMTERMNAME" ] && WMTERMNAME=xvt

$WMTERMNAME $WMTERMOPT "$@" &

