diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-28 12:54:28 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-28 12:54:28 +1000 |
| commit | 9c99a537d02128b39f5542a587ce0720b71313f9 (patch) | |
| tree | ecf981d80f91fd6250b53a4472f3588ec4de61ed | |
| parent | [CI] chore: update flake (diff) | |
| download | caelestia-shell-9c99a537d02128b39f5542a587ce0720b71313f9.tar.gz caelestia-shell-9c99a537d02128b39f5542a587ce0720b71313f9.tar.bz2 caelestia-shell-9c99a537d02128b39f5542a587ce0720b71313f9.zip | |
bar: fix kb layout
| -rw-r--r-- | services/Hyprland.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/Hyprland.qml b/services/Hyprland.qml index 2b3fd32..e774a33 100644 --- a/services/Hyprland.qml +++ b/services/Hyprland.qml @@ -30,7 +30,7 @@ Singleton { return; if (n === "activelayout") { - root.kbLayout = event.parse(2)[1]; + kbProc.running = true; } else if (["workspace", "moveworkspace", "activespecial", "focusedmon"].includes(n)) { Hyprland.refreshWorkspaces(); Hyprland.refreshMonitors(); @@ -48,6 +48,8 @@ Singleton { } Process { + id: kbProc + running: true command: ["hyprctl", "-j", "devices"] stdout: StdioCollector { |