diff --git a/calamares/branding/openmamba/desktop-gnome-300x225.jpg b/calamares/branding/openmamba/desktop-gnome-300x225.jpg new file mode 100644 index 0000000..130aa32 Binary files /dev/null and b/calamares/branding/openmamba/desktop-gnome-300x225.jpg differ diff --git a/calamares/branding/openmamba/desktop-kde-300x225.jpg b/calamares/branding/openmamba/desktop-kde-300x225.jpg new file mode 100644 index 0000000..2b395e7 Binary files /dev/null and b/calamares/branding/openmamba/desktop-kde-300x225.jpg differ diff --git a/calamares/branding/openmamba/desktop-lxde-300x225.jpg b/calamares/branding/openmamba/desktop-lxde-300x225.jpg new file mode 100644 index 0000000..dd0f4a7 Binary files /dev/null and b/calamares/branding/openmamba/desktop-lxde-300x225.jpg differ diff --git a/calamares/branding/openmamba/show.qml b/calamares/branding/openmamba/show.qml index a467c40..1639b21 100644 --- a/calamares/branding/openmamba/show.qml +++ b/calamares/branding/openmamba/show.qml @@ -24,29 +24,34 @@ Presentation id: presentation Timer { - interval: 5000 - running: false + interval: 60000 + running: true repeat: true onTriggered: presentation.goToNextSlide() } - - Slide { + Slide { Image { - id: background - source: "openmamba.png" - width: 200; height: 200 + id: background1 + source: "desktop-kde-300x225.jpg" + width: 300; height: 225 fillMode: Image.PreserveAspectFit anchors.centerIn: parent } Text { - anchors.horizontalCenter: background.horizontalCenter - anchors.top: background.bottom - text: "This is a customizable QML slideshow.
"+ - "Distributions should provide their own slideshow and list it in
"+ - "their custom branding.desc file.
"+ - "To create a Calamares presentation in QML, import calamares.slideshow,
"+ - "define a Presentation element with as many Slide elements as needed." + anchors.horizontalCenter: background1.horizontalCenter + anchors.top: parent.top + text: "

Thanks for choosing openmamba!



" + wrapMode: Text.WordWrap + width: root.width + horizontalAlignment: Text.Center + } + Text { + anchors.horizontalCenter: background1.horizontalCenter + anchors.top: background1.bottom + text: "
openmamba with KDE

"+ + "The most evolved and complete desktop system of openmamba, KDE based.
"+ + "For every user who wants a modern, multimedia and productive desktop.
" wrapMode: Text.WordWrap width: root.width horizontalAlignment: Text.Center @@ -54,10 +59,59 @@ Presentation } Slide { - centeredText: "This is a second Slide element." + Image { + id: background2 + source: "desktop-lxde-300x225.jpg" + width: 300; height: 225 + fillMode: Image.PreserveAspectFit + anchors.centerIn: parent + } + Text { + anchors.horizontalCenter: background2.horizontalCenter + anchors.top: parent.top + text: "

Thanks for choosing openmamba!



" + wrapMode: Text.WordWrap + width: root.width + horizontalAlignment: Text.Center + } + Text { + anchors.horizontalCenter: background2.horizontalCenter + anchors.top: background2.bottom + text: "
openmamba with LXDE

"+ + "openmamba system with a simple and light desktop.
"+ + "For server installation or desktop on obsolete PC, embedded systems, tablet, single-board PC.
" + wrapMode: Text.WordWrap + width: root.width + horizontalAlignment: Text.Center + } } Slide { - centeredText: "This is a third Slide element." + Image { + id: background3 + source: "desktop-gnome-300x225.jpg" + width: 300; height: 225 + fillMode: Image.PreserveAspectFit + anchors.centerIn: parent + } + Text { + anchors.horizontalCenter: background3.horizontalCenter + anchors.top: parent.top + text: "

Thanks for choosing openmamba!



" + wrapMode: Text.WordWrap + width: root.width + horizontalAlignment: Text.Center + } + Text { + anchors.horizontalCenter: background3.horizontalCenter + anchors.top: background3.bottom + text: "
openmamba with GNOME

"+ + "openmamba system with GNOME desktop.
"+ + "For users who prefer a different desktop place without relinquishing openmamba system.
" + wrapMode: Text.WordWrap + width: root.width + horizontalAlignment: Text.Center + } } + }