diff options
| author | AleksElixir <71710534+AleksElixir@users.noreply.github.com> | 2026-01-19 06:51:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-19 15:51:08 +1100 |
| commit | 60a567bbba7b52cde5c926b61b9a5d7b3224b2af (patch) | |
| tree | 7b79c3aa4033abcea409b4f09953df0a41b4f1da /config | |
| parent | controlcenter: add desktopClock configurations (#1097) (diff) | |
| download | caelestia-shell-60a567bbba7b52cde5c926b61b9a5d7b3224b2af.tar.gz caelestia-shell-60a567bbba7b52cde5c926b61b9a5d7b3224b2af.tar.bz2 caelestia-shell-60a567bbba7b52cde5c926b61b9a5d7b3224b2af.zip | |
popouts/kblayout: revamp to be actually functional (#971)
* Replacement KbLayout.qml for keyboard layout management
* Add files via upload
* Update KbLayout source component import
* Remove KbLayout.qml and relocate to kblayout folder
The KbLayout.qml file has been removed and relocated to the kblayout folder.
* Code fixes, and added kbLimit config that toust would be dissableable
* Add 'kbLimit' to configuration options
Added the keyboard limit toast config to the README
* Update KbLayout.qml
* Update KbLayoutModel.qml
* Update BarConfig.qml
* Update Content.qml
* remove old file
---------
Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 1 | ||||
| -rw-r--r-- | config/UtilitiesConfig.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index a0ce4be..8226d9e 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -111,5 +111,6 @@ JsonObject { property int trayMenuWidth: 300 property int batteryWidth: 250 property int networkWidth: 320 + property int kbLayoutWidth: 320 } } diff --git a/config/UtilitiesConfig.qml b/config/UtilitiesConfig.qml index 5779d88..cf46446 100644 --- a/config/UtilitiesConfig.qml +++ b/config/UtilitiesConfig.qml @@ -23,6 +23,7 @@ JsonObject { property bool capsLockChanged: true property bool numLockChanged: true property bool kbLayoutChanged: true + property bool kbLimit: true property bool vpnChanged: true property bool nowPlaying: false } |