diff options
| -rw-r--r-- | config/UserPaths.qml | 4 | ||||
| -rw-r--r-- | modules/lock/Center.qml | 2 | ||||
| -rw-r--r-- | modules/lock/LockSurface.qml | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/config/UserPaths.qml b/config/UserPaths.qml index f334890..0daa4e1 100644 --- a/config/UserPaths.qml +++ b/config/UserPaths.qml @@ -2,8 +2,8 @@ import qs.utils import Quickshell.Io JsonObject { - property string wallpaper: `${Paths.config}/wallpaper.png` - property string face: `${Paths.config}/face.png` + property string wallpaper: "" + property string face: "" property string sessionGif: "root:/assets/len.gif" property string mediaGif: "root:/assets/bongocat.gif" } diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index 5885252..4e2215b 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -104,7 +104,7 @@ ColumnLayout { id: pfp anchors.fill: parent - source: Paths.face ?? "" + source: Paths.face } } diff --git a/modules/lock/LockSurface.qml b/modules/lock/LockSurface.qml index be41147..0c3ce69 100644 --- a/modules/lock/LockSurface.qml +++ b/modules/lock/LockSurface.qml @@ -145,14 +145,14 @@ WlSessionLockSurface { Anim { target: lockContent property: "implicitWidth" - to: root.screen.height * Config.lock.sizes.heightMult * Config.lock.sizes.ratio + to: root.screen?.height * Config.lock.sizes.heightMult * Config.lock.sizes.ratio duration: Appearance.anim.durations.expressiveDefaultSpatial easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } Anim { target: lockContent property: "implicitHeight" - to: root.screen.height * Config.lock.sizes.heightMult + to: root.screen?.height * Config.lock.sizes.heightMult duration: Appearance.anim.durations.expressiveDefaultSpatial easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } |