mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-21 00:09:58 -05:00
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};"
|
|
)
|
|
)
|
|
)
|
|
) |