diff options
Diffstat (limited to 'raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml')
| -rw-r--r-- | raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml b/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml new file mode 100644 index 0000000..4ebbe44 --- /dev/null +++ b/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml @@ -0,0 +1,15 @@ +import QtQuick 2.10 + +Item { + id: welcomeRoot + anchors.fill: parent + + Image { + anchors.fill: parent + source: "images/raveos-welcome.png" + fillMode: Image.Stretch + horizontalAlignment: Image.AlignHCenter + verticalAlignment: Image.AlignVCenter + smooth: true + } +} |