nixos/gunther/eww/config/widgets/window-title/eww.yuck

7 lines
246 B
Text
Raw Normal View History

(deflisten window :initial "" "sh ./widgets/window-title/get-window-title.sh")
(defwidget windowtitle []
2024-07-29 18:04:01 +02:00
(box :class "title" :visible {window == "null" ? false : true}
(label :text {window == "null" ? "" : window} :class "title"
)
)
)