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
277 B
15 lines
277 B
12 years ago
|
#!/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
|