diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-20 09:46:29 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:36:57 -0400 |
| commit | 4183a38b9ca4b3b314db51acb4c6795b5072f385 (patch) | |
| tree | 680dc7af88147f183d3c1be723d115e5bd9a1759 /modules | |
| parent | revert 'monitorWorkspaces' (diff) | |
| download | caelestia-shell-4183a38b9ca4b3b314db51acb4c6795b5072f385.tar.gz caelestia-shell-4183a38b9ca4b3b314db51acb4c6795b5072f385.tar.bz2 caelestia-shell-4183a38b9ca4b3b314db51acb4c6795b5072f385.zip | |
remove config saving, make background scale properly, and add quickshell desktop file
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/background/Background.qml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml index 1796a15..47b5bde 100644 --- a/modules/background/Background.qml +++ b/modules/background/Background.qml @@ -27,16 +27,19 @@ Loader { color: Config.background.wallpaperEnabled ? "black" : "transparent" surfaceFormat.opaque: false - anchors.top: true - anchors.bottom: true - anchors.left: true - anchors.right: true + WlrLayershell.anchors { + top: true + bottom: true + left: true + right: true + } Image { id: wallpaper anchors.fill: parent asynchronous: true + fillMode: Image.PreserveAspectCrop Loader { id: wallpaper |