#!/bin/sh

# Customize the X screen saver
xset s 120 2
xset s blank

# Reset the screen's background
xsetroot

# Launch xconsole (in daemon mode)
if [ "$DISPLAY" = ":0" -o "$DISPLAY" = ":0.0" ]
then
	xconsole -notify -exitOnFail -verbose -daemon
fi

# Launch xterm (in background)
xterm -ls &
