mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
11 lines
242 B
QML
11 lines
242 B
QML
import QtQuick 2.0
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
Rectangle {
|
|
color: "white" // FIXME
|
|
opacity: .5
|
|
height: Math.max(100, units.gridUnit * 2.5)
|
|
width: parent.width
|
|
y: parent.height / 2 - height / 2
|
|
x: 0
|
|
}
|