ipc manager

This commit is contained in:
2026-08-12 16:17:49 +01:00
parent b09039cabb
commit 88d867f1de
2 changed files with 19 additions and 0 deletions

18
Services/IpcManager.qml Normal file
View File

@@ -0,0 +1,18 @@
pragma Singleton
import QtQuick
import Quickshell
import Quickshell.Io
Singleton {
id: root
signal logoutMenu
IpcHandler {
function openLogoutMenu(): void {
root.logoutMenu();
}
target: "root"
}
}

View File

@@ -6,3 +6,4 @@ singleton BluetoothManager 1.0 BluetoothManager.qml
singleton MprisManager 1.0 MprisManager.qml singleton MprisManager 1.0 MprisManager.qml
singleton BatteryManager 1.0 BatteryManager.qml singleton BatteryManager 1.0 BatteryManager.qml
singleton NetworkManager 1.0 NetworkManager.qml singleton NetworkManager 1.0 NetworkManager.qml
singleton IpcManager 1.0 IpcManager.qml