16 lines
227 B
QML
16 lines
227 B
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Hyprland
|
|
import "../../Components/"
|
|
import "../../Services/"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property HyprlandWorkspace workspace
|
|
|
|
StyledText {
|
|
text: root.workspace.id
|
|
}
|
|
}
|