mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-22 08:49:58 -05:00
30 lines
627 B
Plaintext
30 lines
627 B
Plaintext
; (defwidget net []
|
|
; (button
|
|
; :class "net-icon"
|
|
; :onclick "iwgtk &"
|
|
; :onrightclick "gnome-control-center network &"
|
|
; :tooltip {net.essid}
|
|
; :style "color: ${net.color};"
|
|
; {net.icon}
|
|
; )
|
|
; )
|
|
|
|
(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};"
|
|
)
|
|
)
|
|
)
|
|
) |