summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/Hyprland.qml3
1 files changed, 1 insertions, 2 deletions
diff --git a/services/Hyprland.qml b/services/Hyprland.qml
index f0a0a97..a366e54 100644
--- a/services/Hyprland.qml
+++ b/services/Hyprland.qml
@@ -40,9 +40,8 @@ Singleton {
Process {
id: getClients
- command: ["hyprctl", "-j", "clients"]
+ command: ["sh", "-c", "hyprctl -j clients | jq -c"]
stdout: SplitParser {
- splitMarker: ""
onRead: data => {
const clients = JSON.parse(data);
const rClients = root.clients;