11 lines
271 B
Plaintext
11 lines
271 B
Plaintext
; screenshare & mic share indicators
|
|
(defwidget indicators []
|
|
(box
|
|
:space-evenly: false
|
|
:class "indicators"
|
|
(for i in indicators
|
|
(label
|
|
:class "icon indicator ${i.class}"
|
|
:tooltip "${i.name} is being shared"
|
|
:text {i.icon}))))
|