chore: refactor workspace code
This commit is contained in:
parent
95686e6600
commit
2577cb169d
4 changed files with 44 additions and 23 deletions
36
src/widgets/workspaces/WorkspaceIPC.qml
Normal file
36
src/widgets/workspaces/WorkspaceIPC.qml
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,42 +5,27 @@ import Quickshell.Io // for Process
|
||||||
import "root:base"
|
import "root:base"
|
||||||
|
|
||||||
BRectangle {
|
BRectangle {
|
||||||
id: workspaces
|
height: 100 + layout.spacing * (workspace.amount - 1)
|
||||||
property int workspaceN: 10
|
|
||||||
property int activeN: 1
|
WorkspaceIPC {
|
||||||
height: 100 + col.spacing * (workspaceN - 1)
|
id: workspace
|
||||||
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: col
|
id: layout
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
anchors.bottomMargin: 5
|
anchors.bottomMargin: 5
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
spacing: 1
|
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 {
|
Repeater {
|
||||||
model: workspaceN
|
model: workspace.amount
|
||||||
|
|
||||||
WorkspaceElem {
|
WorkspaceElem {
|
||||||
required property int modelData
|
required property int modelData
|
||||||
wnum: modelData + 1
|
wnum: modelData + 1
|
||||||
focused: activeN === (modelData + 1)
|
focused: workspace.active === (modelData + 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue