diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-08 16:00:05 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-08 16:00:05 -0500 |
| commit | 079625ae2165c7552e8f9a8a2517644e2ed0bab7 (patch) | |
| tree | 4c40df7838ff3638380eedcdec7534443a4533bc /modules/lock/Content.qml | |
| parent | init fork (diff) | |
| download | caelestia-shell-079625ae2165c7552e8f9a8a2517644e2ed0bab7.tar.gz caelestia-shell-079625ae2165c7552e8f9a8a2517644e2ed0bab7.tar.bz2 caelestia-shell-079625ae2165c7552e8f9a8a2517644e2ed0bab7.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 - } - } } } |