shift-shell/shell/contents/views/Desktop.qml
Aaron Seigo 33ccadbb83 start of shell
had to work through NUMEROUS plasmashell bugs again this week to
get even this far *sgh*
2014-09-03 16:50:41 +02:00

31 lines
577 B
QML

import QtQuick 2.0
import org.kde.plasma.core 2.0 as PlasmaCore
import "../components"
Rectangle {
id: root
width: 1024
height: 768
property Item containment;
property Item wallpaper;
onContainmentChanged: console.log(containment.pluginName)
onWallpaperChanged: {
console.log(wallpaper.pluginName + ' ' + wallpaper.opacity);
}
SatelliteStripe {
id: stripe
z: 1
MouseArea {
anchors.fill: parent
onPressed: {
}
onReleased: {
}
}
}
}