add calamares + calamares-branding-antergos-next

This commit is contained in:
2026-06-18 18:38:53 +02:00
parent fccdc21904
commit cca6856634
6 changed files with 270 additions and 0 deletions
@@ -0,0 +1,43 @@
/* Antergos NeXT Calamares slideshow */
import QtQuick 2.0;
import calamares.slideshow 1.0;
Presentation
{
id: presentation
Timer {
interval: 5000
running: presentation.activatedInCalamares
repeat: true
onTriggered: presentation.goToNextSlide()
}
Slide {
Text {
anchors.centerIn: parent
text: "Welcome to Antergos NeXT"
font.pixelSize: 24
font.bold: true
color: "#2a7ab5"
}
}
Slide {
Text {
anchors.centerIn: parent
text: "Installing Antergos NeXT..."
font.pixelSize: 20
color: "#333"
}
}
Slide {
Text {
anchors.centerIn: parent
text: "Almost done!"
font.pixelSize: 20
color: "#333"
}
}
}