From c5a21f8da0eaf26e7d9c84553e5aee79b7b1c2e4 Mon Sep 17 00:00:00 2001 From: bbedward Date: Fri, 6 Feb 2026 08:20:17 -0500 Subject: [PATCH] niri: ensure other configs too --- quickshell/Services/NiriService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Services/NiriService.qml b/quickshell/Services/NiriService.qml index a6ad1bbe..3b1e84eb 100644 --- a/quickshell/Services/NiriService.qml +++ b/quickshell/Services/NiriService.qml @@ -1190,7 +1190,7 @@ Singleton { writeAlttabProcess.command = ["sh", "-c", `mkdir -p "${niriDmsDir}" && cat > "${alttabPath}" << 'EOF'\n${alttabContent}\nEOF`]; writeAlttabProcess.running = true; - for (const name of ["outputs", "binds", "cursor", "windowrules", "colors"]) { + for (const name of ["outputs", "binds", "cursor", "windowrules", "colors", "alttab", "layout"]) { const path = niriDmsDir + "/" + name + ".kdl"; Proc.runCommand("niri-ensure-" + name, ["sh", "-c", `mkdir -p "${niriDmsDir}" && [ ! -f "${path}" ] && touch "${path}" || true`], (output, exitCode) => { if (exitCode !== 0)