mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
17 lines
340 B
QML
17 lines
340 B
QML
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")
|
|
}
|
|
}
|