Files
dotfiles/config/quickshell/Services/NukeKded6.qml
2025-10-25 12:14:47 +02:00

24 lines
442 B
QML

import QtQuick
import Quickshell
import Quickshell.Io
import qs.Utils
pragma Singleton
Singleton {
property bool done: false
Process {
id: process
running: true
command: ["sh", "-c", "which kquitapp6 && kquitapp6 kded6"]
onExited: (code, status) => {
if (code !== 0)
Logger.warn("NukeKded6", `Failed to kill kded6: ${code}`);
done = true;
}
}
}