mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-08 18:18:44 +00:00
18 lines
426 B
Plaintext
18 lines
426 B
Plaintext
(deflisten keyboard-layout :initial "en" "./lib/get-kb-layout.sh")
|
|
|
|
(defwidget kbd-layout-tray-item []
|
|
(box
|
|
:orientation "h"
|
|
:space-evenly false
|
|
:halign "center"
|
|
:class "interactive kbd-layout-tray-item"
|
|
(eventbox :cursor "pointer" :class "interactive"
|
|
(button
|
|
:class "kbd-layout"
|
|
:onclick "hyprctl switchxkblayout usb-hid-keyboard next"
|
|
keyboard-layout
|
|
)
|
|
)
|
|
)
|
|
)
|