From a77f6eb385eceb727c15a84a12c075551b8d99ad Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 10 Sep 2025 08:39:34 -0400 Subject: [PATCH] ensure state dir exists --- Common/Theme.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Common/Theme.qml b/Common/Theme.qml index a2598ca5..6d8f6565 100644 --- a/Common/Theme.qml +++ b/Common/Theme.qml @@ -57,6 +57,10 @@ Singleton { return path + "/dankshell" } + Component.onCompleted: { + Quickshell.execDetached(["mkdir", "-p", stateDir]) + } + function getMatugenColor(path, fallback) { colorUpdateTrigger const colorMode = (typeof SessionData !== "undefined" && SessionData.isLightMode) ? "light" : "dark"