summaryrefslogtreecommitdiff
path: root/modules/background/Background.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-09 15:15:49 -0500
committerFreya Murphy <freya@freyacat.org>2026-03-16 09:24:54 -0400
commit50bbd6f464fd32d3ce345681c6448ef963fb6e81 (patch)
treed29ac42d5faaf2c4beb3b8ef3f138729a09de7bf /modules/background/Background.qml
parentonly show active workspaces, fix colors (diff)
downloadcaelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.gz
caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.bz2
caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.zip
remove more stuffff
Diffstat (limited to 'modules/background/Background.qml')
-rw-r--r--modules/background/Background.qml97
1 files changed, 0 insertions, 97 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml
index c1f149a..44d3491 100644
--- a/modules/background/Background.qml
+++ b/modules/background/Background.qml
@@ -51,103 +51,6 @@ Loader {
wallpaper: wallpaper
}
}
-
- Loader {
- id: clockLoader
- active: Config.background.desktopClock.enabled
-
- anchors.margins: Appearance.padding.large * 2
- anchors.leftMargin: Appearance.padding.large * 2 + Config.bar.sizes.innerWidth + Math.max(Appearance.padding.smaller, Config.border.thickness)
-
- state: Config.background.desktopClock.position
- states: [
- State {
- name: "top-left"
- AnchorChanges {
- target: clockLoader
- anchors.top: parent.top
- anchors.left: parent.left
- }
- },
- State {
- name: "top-center"
- AnchorChanges {
- target: clockLoader
- anchors.top: parent.top
- anchors.horizontalCenter: parent.horizontalCenter
- }
- },
- State {
- name: "top-right"
- AnchorChanges {
- target: clockLoader
- anchors.top: parent.top
- anchors.right: parent.right
- }
- },
- State {
- name: "middle-left"
- AnchorChanges {
- target: clockLoader
- anchors.verticalCenter: parent.verticalCenter
- anchors.left: parent.left
- }
- },
- State {
- name: "middle-center"
- AnchorChanges {
- target: clockLoader
- anchors.verticalCenter: parent.verticalCenter
- anchors.horizontalCenter: parent.horizontalCenter
- }
- },
- State {
- name: "middle-right"
- AnchorChanges {
- target: clockLoader
- anchors.verticalCenter: parent.verticalCenter
- anchors.right: parent.right
- }
- },
- State {
- name: "bottom-left"
- AnchorChanges {
- target: clockLoader
- anchors.bottom: parent.bottom
- anchors.left: parent.left
- }
- },
- State {
- name: "bottom-center"
- AnchorChanges {
- target: clockLoader
- anchors.bottom: parent.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- }
- },
- State {
- name: "bottom-right"
- AnchorChanges {
- target: clockLoader
- anchors.bottom: parent.bottom
- anchors.right: parent.right
- }
- }
- ]
-
- transitions: Transition {
- AnchorAnimation {
- duration: Appearance.anim.durations.expressiveDefaultSpatial
- easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
- }
- }
-
- sourceComponent: DesktopClock {
- wallpaper: behindClock
- absX: clockLoader.x
- absY: clockLoader.y
- }
- }
}
}
}