summaryrefslogtreecommitdiffstats
path: root/debian/squeeze/kdebase/debian/plasma.autodetect
blob: 40e44f6cdadcf16bf84b1f08f21d92ee0a10f3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DESKTOP_SESSION="$DESKTOP_SESSION"
echo "You are running $DESKTOP_SESSION"

if [[ "$DESKTOP_SESSION" == "trinity" ]]
then
	# Do nothing, this is KDE3
	echo "I detected KDE3"
else
	# This is KDE4, start plasma
	echo "I detected KDE4"
	/usr/bin/plasma.kde4
fi