#!/bin/bash
# install .kde and Desktop directories, if absent.
$KDEDIR/bin/kdesetup
# clean up old kde /tmp files that belong to the user
for file in /tmp/kfm* /tmp/kio* ; do
    if [ -O $file ] ; then
	rm -fr $file
    fi
done
# add any local customizations here, before the startkde script runs
$KDEDIR/bin/startkde

