summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNippy <nippy@rp1.hu>2026-06-02 21:15:21 +0200
committerNippy <nippy@rp1.hu>2026-06-02 21:15:21 +0200
commit14253a34772b83cfd71ea60b8f31821a67d706d2 (patch)
treeacce294e4a6b94be95663a922599b4d29fba4798
parentcc00fd0475a506d7dfd0f9be26fc9f9db1885014 (diff)
downloadRaveOS-PKGBUILD-14253a34772b83cfd71ea60b8f31821a67d706d2.tar.gz
RaveOS-PKGBUILD-14253a34772b83cfd71ea60b8f31821a67d706d2.zip
calamares update
-rw-r--r--raveos-calamares-theme/PKGBUILD2
-rw-r--r--raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss10
-rw-r--r--raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml15
3 files changed, 16 insertions, 11 deletions
diff --git a/raveos-calamares-theme/PKGBUILD b/raveos-calamares-theme/PKGBUILD
index 9a4180d..d098f74 100644
--- a/raveos-calamares-theme/PKGBUILD
+++ b/raveos-calamares-theme/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: AlexC <alexc@alexc.hu>
pkgname=raveos-calamares-theme
pkgver=2.0.0
-pkgrel=18
+pkgrel=19
pkgdesc="RaveOS Calamares Theme"
arch=('any')
url="https://git.rp1.hu/RaveOS"
diff --git a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss
index b53ae1d..8a12280 100644
--- a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss
+++ b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss
@@ -3,16 +3,6 @@
/* Main: #404040 | Accent: #3d7839 | Border: #7f8c8d */
/* ===================================================== */
-/* ---------------- Welcome Logo (screen-adaptive) ---------------- */
-
-#welcomeLogo {
- min-height: 1100px;
- min-width: 1100px;
- max-height: 9999px;
- max-width: 9999px;
- qproperty-alignment: AlignCenter;
-}
-
/* ---------------- Global ---------------- */
* {
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
+ }
+}