#!/bin/sh
#
if ! gnome-terminal -- $*; then
    if ! konsole -e $*; then
        if ! xfce4-terminal -e $*; then
            $*
        fi
    fi
fi