From 7c733b9f47f87a046871fbfdf4081e24ae662483 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 21 Aug 2025 16:03:06 -0400 Subject: [PATCH] LockScreen: fix hardcoded avatar imagepath --- Modules/LockScreen/LockScreen.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/LockScreen/LockScreen.qml b/Modules/LockScreen/LockScreen.qml index 467400c..a02d530 100644 --- a/Modules/LockScreen/LockScreen.qml +++ b/Modules/LockScreen/LockScreen.qml @@ -334,7 +334,7 @@ Loader { anchors.centerIn: parent width: 100 * scaling height: 100 * scaling - imagePath: Quickshell.env("HOME") + "/.face" + imagePath: Settings.data.general.avatarImage fallbackIcon: "person" imageRadius: width * 0.5 }