This commit is contained in:
end-4
2025-04-23 20:40:29 +02:00
parent 806230ff52
commit 41ffd0ac80
13 changed files with 491 additions and 7 deletions
@@ -0,0 +1,65 @@
pragma Singleton
pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import Quickshell.Io
import Quickshell.Wayland
import Quickshell.Hyprland
Singleton {
id: root
property var windowList: []
property var addresses: []
property var windowByAddress: {}
property var monitors: []
function updateWindowList() {
getClients.running = true
getMonitors.running = true
}
Component.onCompleted: {
updateWindowList()
}
Connections {
target: Hyprland
function onRawEvent(event) {
// Filter out redundant old v1 events for the same thing
if(event in [
"activewindow", "focusedmon", "monitoradded",
"createworkspace", "destroyworkspace", "moveworkspace",
"activespecial", "movewindow", "windowtitle"
]) return ;
updateWindowList()
}
}
Process {
id: getClients
command: ["bash", "-c", "hyprctl clients -j | jq -c"]
stdout: SplitParser {
onRead: (data) => {
root.windowList = JSON.parse(data)
root.windowByAddress = {}
for (var i = 0; i < root.windowList.length; ++i) {
var win = root.windowList[i]
root.windowByAddress[win.address] = win
}
root.addresses = root.windowList.map((win) => win.address)
}
}
}
Process {
id: getMonitors
command: ["bash", "-c", "hyprctl monitors -j | jq -c"]
stdout: SplitParser {
onRead: (data) => {
root.monitors = JSON.parse(data)
}
}
}
}