#!/bin/bash

xterm &

if [ ! -z $(type -path oclock) ]; then
	oclock -geometry +0+0 &
else
	xclock -geometry +0+0 &
fi

if [ ! -z $(type -path control-panel) ]; then
	control-panel &
fi

if [ -f /usr/bin/arena ]; then
	arena /usr/doc/HTML/index.html &
fi

if [ ! -z $(type -path fvwm) ]; then
	exec fvwm
else
	exec twm
fi
