blob: 7d74530e384a8e2fcb3616cd050f7d442ba20c24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import qs.components
import qs.services
import qs.config
import QtQuick.Layouts
ColumnLayout {
spacing: Appearance.spacing.small
StyledText {
text: qsTr("Capslock: %1").arg(Hypr.capsLock ? "Enabled" : "Disabled")
}
StyledText {
text: qsTr("Numlock: %1").arg(Hypr.numLock ? "Enabled" : "Disabled")
}
}
|