summaryrefslogtreecommitdiff
path: root/modules/bar/popouts/KbLayout.qml
diff options
context:
space:
mode:
authorAleksElixir <71710534+AleksElixir@users.noreply.github.com>2026-01-19 06:51:08 +0200
committerGitHub <noreply@github.com>2026-01-19 15:51:08 +1100
commit60a567bbba7b52cde5c926b61b9a5d7b3224b2af (patch)
tree7b79c3aa4033abcea409b4f09953df0a41b4f1da /modules/bar/popouts/KbLayout.qml
parentcontrolcenter: add desktopClock configurations (#1097) (diff)
downloadcaelestia-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 'modules/bar/popouts/KbLayout.qml')
-rw-r--r--modules/bar/popouts/KbLayout.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/bar/popouts/KbLayout.qml b/modules/bar/popouts/KbLayout.qml
deleted file mode 100644
index ace5af2..0000000
--- a/modules/bar/popouts/KbLayout.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import qs.components
-import qs.components.controls
-import qs.services
-import qs.config
-import Quickshell
-import QtQuick.Layouts
-
-ColumnLayout {
- id: root
-
- spacing: Appearance.spacing.normal
-
- StyledText {
- Layout.topMargin: Appearance.padding.normal
- Layout.rightMargin: Appearance.padding.normal
- text: qsTr("Keyboard layout: %1").arg(Hypr.kbLayoutFull)
- font.weight: 500
- }
-
- TextButton {
- Layout.bottomMargin: Appearance.padding.normal
- Layout.rightMargin: Appearance.padding.normal
- Layout.fillWidth: true
-
- text: qsTr("Switch layout")
- onClicked: Hypr.extras.message("switchxkblayout all next")
- }
-}