13 lines
313 B
Text
13 lines
313 B
Text
(defwidget home []
|
|
(box :class "home"
|
|
:orientation "v"
|
|
:spacing 10
|
|
:width 300
|
|
:space-evenly false
|
|
(rat)
|
|
(weather :json weather_status)
|
|
(shortcuts)))
|
|
|
|
(include "modules/home/rat.yuck")
|
|
(include "modules/home/weather.yuck")
|
|
(include "modules/home/shortcuts.yuck")
|