diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-10 17:29:29 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-10 17:29:29 -0500 |
| commit | 3ee6dcd9611986864e78df8dd06cc364e346f4a6 (patch) | |
| tree | beb0e2959e66b7f0f5a57d3377b339b8381f6181 /modules | |
| parent | remove more things, make lock screen use wallpaper not screenshot (diff) | |
| download | caelestia-shell-3ee6dcd9611986864e78df8dd06cc364e346f4a6.tar.gz caelestia-shell-3ee6dcd9611986864e78df8dd06cc364e346f4a6.tar.bz2 caelestia-shell-3ee6dcd9611986864e78df8dd06cc364e346f4a6.zip | |
remove more things again lol
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dashboard/Content.qml | 1 | ||||
| -rw-r--r-- | modules/dashboard/Dash.qml | 1 | ||||
| -rw-r--r-- | modules/dashboard/Wrapper.qml | 1 | ||||
| -rw-r--r-- | modules/dashboard/dash/User.qml | 2 | ||||
| -rw-r--r-- | modules/lock/Center.qml | 5 |
5 files changed, 2 insertions, 8 deletions
diff --git a/modules/dashboard/Content.qml b/modules/dashboard/Content.qml index 70cfaf9..f5f0e46 100644 --- a/modules/dashboard/Content.qml +++ b/modules/dashboard/Content.qml @@ -1,7 +1,6 @@ pragma ComponentBehavior: Bound import qs.components -import qs.components.filedialog import qs.config import Quickshell import Quickshell.Widgets diff --git a/modules/dashboard/Dash.qml b/modules/dashboard/Dash.qml index 0bc81b4..7617ed8 100644 --- a/modules/dashboard/Dash.qml +++ b/modules/dashboard/Dash.qml @@ -1,5 +1,4 @@ import qs.components -import qs.components.filedialog import qs.services import qs.config import "dash" diff --git a/modules/dashboard/Wrapper.qml b/modules/dashboard/Wrapper.qml index 3f8f2bd..9758d27 100644 --- a/modules/dashboard/Wrapper.qml +++ b/modules/dashboard/Wrapper.qml @@ -1,7 +1,6 @@ pragma ComponentBehavior: Bound import qs.components -import qs.components.filedialog import qs.config import qs.utils import Caelestia diff --git a/modules/dashboard/dash/User.qml b/modules/dashboard/dash/User.qml index 6cb06f2..0d40873 100644 --- a/modules/dashboard/dash/User.qml +++ b/modules/dashboard/dash/User.qml @@ -1,7 +1,5 @@ import qs.components import qs.components.effects -import qs.components.images -import qs.components.filedialog import qs.services import qs.config import qs.utils diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index 748504b..5885252 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -2,7 +2,6 @@ pragma ComponentBehavior: Bound import qs.components import qs.components.controls -import qs.components.images import qs.services import qs.config import qs.utils @@ -101,11 +100,11 @@ ColumnLayout { font.pointSize: Math.floor(root.centerWidth / 4) } - CachingImage { + Image { id: pfp anchors.fill: parent - path: `${Paths.home}/.face` + source: Paths.face ?? "" } } |