mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
16 lines
456 B
Plaintext
16 lines
456 B
Plaintext
(deflisten window_name
|
|
:initial `{"class":"","name":"","formatted_name":""}`
|
|
`scripts/window_name`)
|
|
|
|
; Consider making the window name clickable, opening up a full window that's showing
|
|
; the selected window details (class, unformatted name, and perhaps even more, like
|
|
; xwayland status, ...)
|
|
(defwidget window_name_module []
|
|
(box
|
|
:class "module window_name"
|
|
|
|
(label
|
|
:class "value"
|
|
:text "${window_name.formatted_name}")
|
|
))
|