Workspaces Show which Apps (only some few are translated to icons)

This commit is contained in:
Hannes
2026-02-19 19:04:03 +01:00
parent fb9b8090b2
commit 1021408191
2 changed files with 88 additions and 0 deletions
+21
View File
@@ -1,6 +1,7 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
import Quickshell.Io
import "../../../colors"
Row { // Workspace Row
@@ -49,6 +50,26 @@ Row { // Workspace Row
font.pixelSize: 18
font.family: "Inter, sans-serif"
}
Process {
id: workspaceContent
command: ["sh", "-c", Quickshell.env("HOME") + "/.config/quickshell/modules/bar/scripts/Apps.sh " + modelData.id]
running: true
stdout: StdioCollector {
onStreamFinished: {
workspaceNum.text = this.text
console.log("networkScript output:", this.text)
}
}
}
Timer {
interval: 1000
running: true
repeat: true
onTriggered: workspaceContent.running = true
}
}
}