#!/bin/sh

echo '************************************************************************'
echo '**** safestartkde is DEPRECATED - use "startkde --failsafe" instead ****'
echo '************************************************************************'

#
#  FAILSAFE KDE STARTUP SCRIPT ( 4.4.5 (KDE 4.4.5) )
#

# This script launches KDE with some potentionally unstable parts (like
# compositing effects) disabled.

# General failsafe flag
KDE_FAILSAFE=1
export KDE_FAILSAFE

# Disable KWin's compositing
KWIN_COMPOSE=N
export KWIN_COMPOSE

exec /opt/kde/bin/startkde "$@"
