add cookie quote again (you can revert this if you dont want)

This commit is contained in:
darksignal7
2025-10-08 23:30:21 +03:00
parent aa064fb6c5
commit 64455b594b
2 changed files with 71 additions and 0 deletions
@@ -24,6 +24,7 @@ Variants {
readonly property real clockSizePadding: 20
readonly property real screenSizePadding: 50
readonly property string clockStyle: Config.options.background.clock.style
readonly property bool showQuote: Config.options.background.showQuote && Config.options.background.quote !== ""
model: Quickshell.screens
PanelWindow {
@@ -339,6 +340,14 @@ Variants {
active: visible
sourceComponent: CookieClock {}
}
Loader {
id: cookieQuoteLoader
visible: root.showQuote
active: visible
anchors.horizontalCenter: parent.horizontalCenter
sourceComponent: CookieQuote {}
}
}