You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/ubuntu/maverick/kdebase/debian/plasma-desktop.autodetect

15 lines
287 B

#!/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-desktop
echo "I detected KDE4"
/usr/bin/plasma-desktop.kde4
fi