summaryrefslogtreecommitdiff
path: root/raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml
diff options
context:
space:
mode:
authorAlexanderCurl <alexc@alexc.hu>2026-04-18 17:46:06 +0100
committerAlexanderCurl <alexc@alexc.hu>2026-04-18 17:46:06 +0100
commit70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69 (patch)
treeab1123d4067c1b086dd6faa7ee4ea643236b565a /raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml
parent5d94c0a7d44a2255b81815a52a7056a94a39842d (diff)
downloadRaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.tar.gz
RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.zip
Replaced file structures for themes in the correct format
Diffstat (limited to 'raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml')
-rw-r--r--raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml53
1 files changed, 0 insertions, 53 deletions
diff --git a/raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml b/raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml
deleted file mode 100644
index dbd80c6..0000000
--- a/raveos-theme/kde/theme-data/plasma-splash/contents/splash/Splash.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-import QtQuick
-import org.kde.kirigami as Kirigami
-
-Rectangle {
- id: root
- color: "black"
-
- property int stage
-
- Image {
- anchors.fill: parent
- source: "images/background.jpg"
- fillMode: Image.PreserveAspectCrop
- asynchronous: true
- }
-
- Rectangle {
- anchors.fill: parent
- color: "#66000000"
- }
-
- Item {
- anchors.fill: parent
- opacity: stage >= 2 ? 1 : 0
-
- Image {
- id: logo
- anchors.centerIn: parent
- source: "images/new-RP-logo.png"
- asynchronous: true
- sourceSize.width: Kirigami.Units.gridUnit * 12
- sourceSize.height: Kirigami.Units.gridUnit * 12
- fillMode: Image.PreserveAspectFit
- }
-
- Image {
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.top: logo.bottom
- anchors.topMargin: Kirigami.Units.largeSpacing * 2
- source: "/usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz"
- sourceSize.width: Kirigami.Units.gridUnit * 2
- sourceSize.height: Kirigami.Units.gridUnit * 2
- asynchronous: true
- RotationAnimator on rotation {
- from: 0
- to: 360
- duration: 2000
- loops: Animation.Infinite
- running: stage >= 2 && Kirigami.Units.longDuration > 1
- }
- }
- }
-}