forked from Shinonome/dots-hyprland
19 lines
402 B
Plaintext
Executable File
19 lines
402 B
Plaintext
Executable File
(defwidget net []
|
|
(box
|
|
:class "module"
|
|
(eventbox
|
|
:class "net-icon"
|
|
:onclick "iwgtk &"
|
|
:onrightclick "gnome-control-center network &"
|
|
:tooltip {net.essid}
|
|
; :style "color: ${net.color};"
|
|
(label
|
|
:valign "start"
|
|
:text {net.icon}
|
|
:class "net-icon"
|
|
:tooltip {net.essid}
|
|
; :style "color: ${net.color};"
|
|
)
|
|
)
|
|
)
|
|
) |