diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-30 17:19:30 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-30 17:19:30 +1000 |
| commit | 1ed0db3b48f86ec7d509cb67d0ef4f9b38c84fb2 (patch) | |
| tree | 0a7994bb3c59448e941741d50871cb8908eb1984 /modules/bar/components/workspaces/Workspace.qml | |
| parent | bar: workspaces change window colour (diff) | |
| download | caelestia-shell-1ed0db3b48f86ec7d509cb67d0ef4f9b38c84fb2.tar.gz caelestia-shell-1ed0db3b48f86ec7d509cb67d0ef4f9b38c84fb2.tar.bz2 caelestia-shell-1ed0db3b48f86ec7d509cb67d0ef4f9b38c84fb2.zip | |
bar: animate bluetooth devices
Diffstat (limited to 'modules/bar/components/workspaces/Workspace.qml')
| -rw-r--r-- | modules/bar/components/workspaces/Workspace.qml | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml index 9ba82a3..2ca384e 100644 --- a/modules/bar/components/workspaces/Workspace.qml +++ b/modules/bar/components/workspaces/Workspace.qml @@ -41,26 +41,12 @@ Item { height: BarConfig.sizes.innerHeight } - Grid { - flow: root.vertical ? GridLayout.TopToBottom : GridLayout.LeftToRight - rows: root.vertical ? -1 : 1 - columns: root.vertical ? 1 : -1 - spacing: Appearance.padding.small - + Box { anchors.left: vertical ? undefined : indicator.right anchors.top: vertical ? indicator.bottom : undefined anchors.verticalCenter: vertical ? undefined : indicator.verticalCenter anchors.horizontalCenter: vertical ? indicator.horizontalCenter : undefined - add: Transition { - Anim { - properties: "scale" - from: 0 - to: 1 - duration: Appearance.anim.durations.small - } - } - Repeater { model: ScriptModel { values: Hyprland.clients.filter(c => c.workspace.id === root.ws) |