From 30badd864e2b699042c9ac7148c1f550c261f50a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 27 Aug 2024 23:35:29 +0200 Subject: [PATCH] feat(sway): working workspace indicator Indicator is buggy when workspace is focused & hovered at the same time --- src/Bar.qml | 3 ++ src/widgets/workspaces/WorkspaceElem.qml | 51 ++++++++++++++++++ src/widgets/workspaces/Workspaces.qml | 54 +++++++++++++++++++ src/widgets/workspaces/WorkspacesHyprland.qml | 0 src/widgets/workspaces/WorkspacesSway.qml | 0 5 files changed, 108 insertions(+) create mode 100644 src/widgets/workspaces/WorkspaceElem.qml create mode 100644 src/widgets/workspaces/Workspaces.qml create mode 100644 src/widgets/workspaces/WorkspacesHyprland.qml create mode 100644 src/widgets/workspaces/WorkspacesSway.qml diff --git a/src/Bar.qml b/src/Bar.qml index 4eb7787..0f168f7 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -4,6 +4,7 @@ import Quickshell.Io // for process import "windows" import QtQuick.Layouts import "systray" +import "widgets/workspaces" Scope { Variants { @@ -36,6 +37,8 @@ Scope { SysTray {} + Workspaces {} + Item { Layout.fillHeight: true } diff --git a/src/widgets/workspaces/WorkspaceElem.qml b/src/widgets/workspaces/WorkspaceElem.qml new file mode 100644 index 0000000..74134f1 --- /dev/null +++ b/src/widgets/workspaces/WorkspaceElem.qml @@ -0,0 +1,51 @@ +import Quickshell +import QtQuick +import QtQuick.Layouts + +Rectangle { + id: elem + required property int workspaceNum + required property int activeWorkspaceNum + property bool focused: active + property bool active: workspaceNum == activeWorkspaceNum + property int focusedMargin: 3 + property int margin: (focused || active) ? focusedMargin : 5 + + Layout.fillHeight: true + Layout.fillWidth: true + Layout.rightMargin: margin + Layout.leftMargin: margin + + color: "black" + radius: 10 + + MouseArea { + anchors.fill: parent + hoverEnabled: true + + onEntered: () => { + elem.focused = true; + } + + onExited: () => { + elem.focused = active ?? false; + } + } + + states: State { + name: "focused" + when: focused || active + PropertyChanges { + target: elem + Layout.rightMargin: focusedMargin + Layout.leftMargin: focusedMargin + } + } + + transitions: Transition { + NumberAnimation { + easing.type: Easing.InOutQuad + duration: 50 + } + } +} diff --git a/src/widgets/workspaces/Workspaces.qml b/src/widgets/workspaces/Workspaces.qml new file mode 100644 index 0000000..c6cd25c --- /dev/null +++ b/src/widgets/workspaces/Workspaces.qml @@ -0,0 +1,54 @@ +import Quickshell +import QtQuick +import QtQuick.Layouts +import Quickshell.Io // for Process + +Rectangle { + id: workspaces + property int workspaceN: 10 + width: parent.width + height: 100 + col.spacing * (workspaceN - 1) + anchors.bottomMargin: 5 + anchors.topMargin: 5 + border.color: "black" + + border.width: 2 + radius: 5 + + ColumnLayout { + id: col + 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") { + col.work = parsed.current.num; + } + } + } + } + + property int work: 1 + + Repeater { + model: workspaceN + + WorkspaceElem { + required property int modelData + workspaceNum: modelData + 1 + activeWorkspaceNum: col.work + } + } + } +} diff --git a/src/widgets/workspaces/WorkspacesHyprland.qml b/src/widgets/workspaces/WorkspacesHyprland.qml new file mode 100644 index 0000000..e69de29 diff --git a/src/widgets/workspaces/WorkspacesSway.qml b/src/widgets/workspaces/WorkspacesSway.qml new file mode 100644 index 0000000..e69de29