diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-29 18:47:45 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-29 18:47:45 +1000 |
| commit | 169450aa2e9d9058686aab0f7cf54b728ecd6efa (patch) | |
| tree | 22b84e83831f975db86c676ef4716815f59ab10d /services/Hyprland.qml | |
| parent | bar: increase spacing between pill content (diff) | |
| download | caelestia-shell-169450aa2e9d9058686aab0f7cf54b728ecd6efa.tar.gz caelestia-shell-169450aa2e9d9058686aab0f7cf54b728ecd6efa.tar.bz2 caelestia-shell-169450aa2e9d9058686aab0f7cf54b728ecd6efa.zip | |
feat: bar bluetooth devices
Diffstat (limited to 'services/Hyprland.qml')
| -rw-r--r-- | services/Hyprland.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/Hyprland.qml b/services/Hyprland.qml index d786e62..df2f0ba 100644 --- a/services/Hyprland.qml +++ b/services/Hyprland.qml @@ -39,7 +39,7 @@ Singleton { Process { id: getClients - command: ["bash", "-c", "hyprctl -j clients | jq -c"] + command: ["sh", "-c", "hyprctl -j clients | jq -c"] stdout: SplitParser { onRead: data => { const clients = JSON.parse(data); @@ -58,7 +58,7 @@ Singleton { Process { id: getActiveClient - command: ["bash", "-c", "hyprctl -j activewindow | jq -c"] + command: ["sh", "-c", "hyprctl -j activewindow | jq -c"] stdout: SplitParser { onRead: data => { const client = JSON.parse(data); |