File 3.4-show.qml.patch of Package calamares
diff -ur a/src/branding/default/show.qml b/src/branding/default/show.qml
--- a/src/branding/default/show.qml
+++ b/src/branding/default/show.qml
@@ -20,6 +20,7 @@
presentation.goToNextSlide();
}
+/* Uncomment to enable multiple slides
Timer {
id: advanceTimer
interval: 1000
@@ -28,6 +29,7 @@
onTriggered: nextSlide()
}
+*/
Slide {
Image {
@@ -37,6 +39,7 @@
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
}
+ /* Uncomment to show some text
Text {
anchors.horizontalCenter: background.horizontalCenter
anchors.top: background.bottom
@@ -49,8 +52,10 @@
width: presentation.width
horizontalAlignment: Text.Center
}
+ */
}
+/* Uncomment to enable multiple slides
Slide {
centeredText: qsTr("This is a second Slide element.")
}
@@ -58,6 +63,7 @@
Slide {
centeredText: qsTr("This is a third Slide element.")
}
+*/
// When this slideshow is loaded as a V1 slideshow, only
// activatedInCalamares is set, which starts the timer (see above).