blob: 9e14070d8cb3e8a76386b5a6dd9f39ceb8a24b1f (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# This stupid scripts prevent the launch of 'plasma-desktop'
# (from KDE4) alongside with TDE.
case "${DESKTOP_SESSION}" in
"kde3"|"trinity"|"TDE") ;;
*) exec /usr/bin/plasma-desktop;;
esac
|