From 1de24676bb80ce633a026f336242d486b40dd3c8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 3 Sep 2025 18:55:05 +1000 Subject: internal: refactor Paths util --- config/Config.qml | 2 +- config/UserPaths.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/Config.qml b/config/Config.qml index 24fb00b..b5218be 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -24,7 +24,7 @@ Singleton { property alias paths: adapter.paths FileView { - path: `${Paths.stringify(Paths.config)}/shell.json` + path: `${Paths.config}/shell.json` watchChanges: true onFileChanged: reload() diff --git a/config/UserPaths.qml b/config/UserPaths.qml index 2876d98..f8de267 100644 --- a/config/UserPaths.qml +++ b/config/UserPaths.qml @@ -2,7 +2,7 @@ import qs.utils import Quickshell.Io JsonObject { - property string wallpaperDir: Paths.strip(`${Paths.pictures}/Wallpapers`) + property string wallpaperDir: `${Paths.pictures}/Wallpapers` property string sessionGif: "root:/assets/kurukuru.gif" property string mediaGif: "root:/assets/bongocat.gif" } -- cgit v1.2.3-freya