summaryrefslogtreecommitdiffstats
path: root/shell/qml/background.qml
diff options
context:
space:
mode:
Diffstat (limited to 'shell/qml/background.qml')
-rw-r--r--shell/qml/background.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/qml/background.qml b/shell/qml/background.qml
new file mode 100644
index 0000000..88b95c0
--- /dev/null
+++ b/shell/qml/background.qml
@@ -0,0 +1,11 @@
+import QtQuick 2.11
+import QtQuick.Window 2.11
+
+Window {
+ id: background
+ width: Screen.width
+ height: Screen.height
+ flags: Qt.FramelessWindowHint
+ visible: true
+ color: '#fff000'
+}