diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-08 16:00:05 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:07:30 -0400 |
| commit | 6865be86b6bc1b932bbc952bd12729427f91c100 (patch) | |
| tree | 218954fabb7345d0e781fff1350d8690f4203693 /modules/lock/Content.qml | |
| parent | init fork (diff) | |
| download | caelestia-shell-6865be86b6bc1b932bbc952bd12729427f91c100.tar.gz caelestia-shell-6865be86b6bc1b932bbc952bd12729427f91c100.tar.bz2 caelestia-shell-6865be86b6bc1b932bbc952bd12729427f91c100.zip | |
clean up lock screen
Diffstat (limited to 'modules/lock/Content.qml')
| -rw-r--r-- | modules/lock/Content.qml | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/modules/lock/Content.qml b/modules/lock/Content.qml index a024ddc..daa87ac 100644 --- a/modules/lock/Content.qml +++ b/modules/lock/Content.qml @@ -14,46 +14,6 @@ RowLayout { ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.normal - - StyledRect { - Layout.fillWidth: true - implicitHeight: weather.implicitHeight - - topLeftRadius: Appearance.rounding.large - radius: Appearance.rounding.small - color: Colours.tPalette.m3surfaceContainer - - WeatherInfo { - id: weather - - rootHeight: root.height - } - } - - StyledRect { - Layout.fillWidth: true - Layout.fillHeight: true - - radius: Appearance.rounding.small - color: Colours.tPalette.m3surfaceContainer - - Fetch {} - } - - StyledClippingRect { - Layout.fillWidth: true - implicitHeight: media.implicitHeight - - bottomLeftRadius: Appearance.rounding.large - radius: Appearance.rounding.small - color: Colours.tPalette.m3surfaceContainer - - Media { - id: media - - lock: root.lock - } - } } Center { @@ -63,31 +23,5 @@ RowLayout { ColumnLayout { Layout.fillWidth: true spacing: Appearance.spacing.normal - - StyledRect { - Layout.fillWidth: true - implicitHeight: resources.implicitHeight - - topRightRadius: Appearance.rounding.large - radius: Appearance.rounding.small - color: Colours.tPalette.m3surfaceContainer - - Resources { - id: resources - } - } - - StyledRect { - Layout.fillWidth: true - Layout.fillHeight: true - - bottomRightRadius: Appearance.rounding.large - radius: Appearance.rounding.small - color: Colours.tPalette.m3surfaceContainer - - NotifDock { - lock: root.lock - } - } } } |