New backup 2025-03-05 14:15:03

This commit is contained in:
Penelope Gwen 2025-03-05 14:15:03 -08:00
parent b4390c6b61
commit b4b3ed4308
2 changed files with 26 additions and 10 deletions

View file

@ -386,13 +386,4 @@
"${json.weather[0].mintempF}°F / ${json.weather[0].maxtempF}°F"
"${json.current_condition[0].humidity}% humidity"))
(defwindow widgets
:windowtype "normal"
:exclusive false
:geometry (geometry :x "10px"
:y "10px"
:width "10px"
:height "10px"
:anchor "top left")
:stacking "bottom"
(widgets))
(include "windows.yuck")

View file

@ -0,0 +1,25 @@
;status bar
(defwindow bar
:windowtype "dock"
:exclusive true
:geometry (geometry :x "0%"
:y "0%"
:width "100%"
:height "30px"
:anchor "top center")
:reserve (struts :side "top" :distance "4%")
(bar))
;desktop widgets
(defwindow widgets
:windowtype "normal"
:exclusive false
:geometry (geometry :x "10px"
:y "10px"
:width "10px"
:height "10px"
:anchor "top left")
:stacking "bottom"
(widgets))