aerothemeplasma/plasma/shells/io.gitgud.wackyideas.desktop/contents/components/Status.qml
catpswin56 55c892faf4 Shell: rewrite lockscreen + more
SDDM: update for the new AeroShell SDDM KCM
Update installation script to install the new AeroShell SDDM KCM
Look and feel + Shell: switch to AeroShellUtils for the SDDM background
2026-03-14 15:52:32 -03:00

52 lines
1.1 KiB
QML

/*
SPDX-FileCopyrightText: 2016 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import QtQuick.Effects
RowLayout {
id: root
property alias statusText: welcomeLbl.text
property int spinnum: 0
property bool speen
spacing: 8
Timer {
id: spinner
running: root.speen
repeat: true
onTriggered: root.spinnum = (root.spinnum + 1) % 17;
interval: 53
}
Image {
id: loadingspinner
source: "../images/spinner/100/spin" + root.spinnum + ".png"
}
Label {
id: welcomeLbl
color: "#FFFFFF"
font.pointSize: 18
renderType: Text.NativeRendering
font.hintingPreference: Font.PreferFullHinting
font.kerning: false
layer.enabled: true
layer.effect: MultiEffect {
shadowEnabled: true
shadowColor: "black"
shadowOpacity: 1.0
shadowBlur: 0.35
shadowVerticalOffset: 1
}
}
}