blob: 66d48a6ef94ad3b7c1d0c05f25fbbba33fb32684 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
import QtQuick
import QtQuick.Layouts
import Quickshell
import Quickshell.Hyprland
import Quickshell.Widgets
import Qt5Compat.GraphicalEffects
import "../utils" as Utils
import "root:/"
RowLayout {
property HyprlandMonitor monitor: Hyprland.monitorFor(screen)
Rectangle {
id: workspaceBar
Layout.preferredWidth: Math.max(50, Utils.HyprlandUtils.maxWorkspace * 25)
Layout.preferredHeight: 23
radius: 7
color: Theme.get.barBgColor
Row {
anchors.centerIn: parent
spacing: 15
Repeater {
model: Utils.HyprlandUtils.maxWorkspace || 1
Item {
required property int index
property bool focused: Hyprland.focusedMonitor?.activeWorkspace?.id === (index + 1)
width: workspaceText.width
height: workspaceText.height
Text {
id: workspaceText
text: (index + 1).toString()
color: "white"
font.pixelSize: 15
font.bold: focused
}
Rectangle {
visible: focused
anchors {
left: workspaceText.left
right: workspaceText.right
top: workspaceText.bottom
topMargin: -3
}
height: 2
color: "white"
}
DropShadow {
visible: focused
anchors.fill: workspaceText
horizontalOffset: 2
verticalOffset: 2
radius: 8.0
samples: 20
color: "#000000"
source: workspaceText
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onClicked: Utils.HyprlandUtils.switchWorkspace(index + 1)
}
}
}
}
}
}
|