summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/tdebase/debian/plasma.autodetect
blob: c23f689097cdc83a384aad82717a3b7f6a30dd46 (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 Trinity
	echo "I detected Trinity"
else
	# This is KDE4, start plasma
	echo "I detected KDE4"
	/usr/bin/plasma.kde4
fi