9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
|
|
(include "widgets/notification-draw/notification.yuck")
|
||
|
|
|
||
|
|
(defwidget notifications [json]
|
||
|
|
(box :orientation "v"
|
||
|
|
(for entry in json
|
||
|
|
(notification
|
||
|
|
:id {entry.id,data}
|
||
|
|
:text {entry.summary.data}))))
|