aboutsummaryrefslogtreecommitdiff
path: root/quickshell/items/Workspace.qml
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-08-06 00:29:36 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-08-06 00:29:36 +0530
commit91a5f9790cfd4a98ee940633694fb512ecf24942 (patch)
treeb20bdd22e304234b6893e20d0ca5fbfd042f2184 /quickshell/items/Workspace.qml
parentced774e19c36fb3b0b33a3846e7c9cf874b0c206 (diff)
i3 > hyprland & x11 > wayland
Diffstat (limited to 'quickshell/items/Workspace.qml')
-rw-r--r--quickshell/items/Workspace.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/quickshell/items/Workspace.qml b/quickshell/items/Workspace.qml
deleted file mode 100644
index f793850..0000000
--- a/quickshell/items/Workspace.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick
-import Quickshell.Hyprland
-
-Repeater {
- model: 5
-
- Text {
- property bool isActive: Hyprland.focusedWorkspace?.id === (index + 1)
-
- text: index + 1
- color: isActive ? shellRoot.green : shellRoot.white
- font {
- pixelSize: shellRoot.fontSize;
- bold: true;
- }
-
- MouseArea {
- anchors.fill: parent
- onClicked: Hyprland.dispatch("workspace " + (index + 1))
- }
- }
-}