mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 17:38:45 +00:00
13 lines
353 B
Plaintext
13 lines
353 B
Plaintext
(defwidget kbd-layout []
|
|
(box
|
|
:orientation "h"
|
|
:space-evenly false
|
|
:halign "center"
|
|
(eventbox :cursor "pointer" :class "interactive" :onclick "hyprctl switchxkblayout usb-hid-keyboard next"
|
|
(label :text {keyboard-layout} :class "kbd-layout")
|
|
)
|
|
)
|
|
)
|
|
|
|
(deflisten keyboard-layout :initial "en" "python ./lib/get-kb-layout.py")
|