Add ".gitattributes" for LFS, update flake.nix, and include new eww widget, README, image, SCSS, and Yuck configuration.
14 lines
401 B
Plaintext
14 lines
401 B
Plaintext
(defwidget activate-linux []
|
|
(box
|
|
:orientation "v"
|
|
:halign "start"
|
|
:valign "start"
|
|
(label :xalign 50 :markup "<span font_size=\"large\">Activate Linux</span>")
|
|
(label :xalign 50 :text "Go to Settings to activate Linux")))
|
|
|
|
(defwindow activate-linux
|
|
:monitor 0
|
|
:stacking "fg"
|
|
:geometry (geometry :x "8px" :y "32px" :width "250px" :anchor "bottom right")
|
|
(activate-linux))
|