From e7c283e91ec9438c7bec217029e169cfd088dcf9 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 4 May 2026 10:24:11 +0200 Subject: [PATCH] fix terminal theming i've got no fucking clue why this works --- dots/.config/quickshell/ii/services/Wallpapers.qml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/dots/.config/quickshell/ii/services/Wallpapers.qml b/dots/.config/quickshell/ii/services/Wallpapers.qml index 962451682..560b5fb39 100644 --- a/dots/.config/quickshell/ii/services/Wallpapers.qml +++ b/dots/.config/quickshell/ii/services/Wallpapers.qml @@ -41,19 +41,12 @@ Singleton { } function openFallbackPicker(darkMode = Appearance.m3colors.darkmode) { - applyProc.exec([ - Directories.wallpaperSwitchScriptPath, - "--mode", (darkMode ? "dark" : "light") - ]) + Quickshell.execDetached([Directories.wallpaperSwitchScriptPath, "--mode", darkMode ? "dark" : "light"]); } function apply(path, darkMode = Appearance.m3colors.darkmode) { - if (!path || path.length === 0) return - applyProc.exec([ - Directories.wallpaperSwitchScriptPath, - "--image", path, - "--mode", (darkMode ? "dark" : "light") - ]) + if (!path || path.length === 0) return; + Quickshell.execDetached([Directories.wallpaperSwitchScriptPath, "--mode", darkMode ? "dark" : "light", "--image", path]); root.changed() }