chore: refactor workspace code

This commit is contained in:
Nydragon 2024-08-28 03:40:32 +02:00
parent 95686e6600
commit 2577cb169d
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
4 changed files with 44 additions and 23 deletions

View file

@ -0,0 +1,36 @@
import QtQuick
import Quickshell.Io
Item {
property int active: 1 // currently active workspace
property int amount: 10 // amount of workspaces
property string name: "" // name of the current desktop
Process {
property string name: ""
command: ["env"]
running: true
stdout: SplitParser {
onRead: data => {
if (data.startsWith("XDG_CURRENT_DESKTOP="))
name = data.slice(20);
}
}
}
Process {
command: ["swaymsg", "-mtsubscribe", "[\"workspace\"]"]
running: name === "sway"
stdout: SplitParser {
onRead: data => {
const parsed = JSON.parse(data);
if (parsed.change == "focus") {
active = parsed.current.num;
}
}
}
}
}

View file

@ -5,42 +5,27 @@ import Quickshell.Io // for Process
import "root:base"
BRectangle {
id: workspaces
property int workspaceN: 10
property int activeN: 1
height: 100 + col.spacing * (workspaceN - 1)
height: 100 + layout.spacing * (workspace.amount - 1)
WorkspaceIPC {
id: workspace
}
ColumnLayout {
id: col
id: layout
anchors.fill: parent
anchors.topMargin: 5
anchors.bottomMargin: 5
Layout.alignment: Qt.AlignHCenter
spacing: 1
Process {
id: getwork
command: ["swaymsg", "-mtsubscribe", "[\"workspace\"]"]
running: true
stdout: SplitParser {
splitMarker: "\n"
onRead: data => {
const parsed = JSON.parse(data);
if (parsed.change == "focus") {
workspaces.activeN = parsed.current.num;
}
}
}
}
Repeater {
model: workspaceN
model: workspace.amount
WorkspaceElem {
required property int modelData
wnum: modelData + 1
focused: activeN === (modelData + 1)
focused: workspace.active === (modelData + 1)
}
}
}