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