16 lines
343 B
QML
16 lines
343 B
QML
import QtQuick.Layouts
|
|
import Caelestia.Config
|
|
import qs.components
|
|
import qs.services
|
|
|
|
ColumnLayout {
|
|
spacing: Tokens.spacing.small
|
|
|
|
StyledText {
|
|
text: qsTr("Capslock: %1").arg(Hypr.capsLock ? "Enabled" : "Disabled")
|
|
}
|
|
|
|
StyledText {
|
|
text: qsTr("Numlock: %1").arg(Hypr.numLock ? "Enabled" : "Disabled")
|
|
}
|
|
}
|