* [StatusIcons] Add caps lock indicator * Seprate CapsLock icon * Use material icon * fixes --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
16 lines
340 B
QML
16 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")
|
|
}
|
|
}
|