10 lines
538 B
Text
10 lines
538 B
Text
(deflisten notification_center_info :initial '{ "count": 0, "dnd": false, "visible": false, "inhibited": false }'
|
|
"swaync-client -s")
|
|
|
|
(defwidget notification_center []
|
|
(box
|
|
:class "notification-center ${(jq(notification_center_info,'.count','r') > 0 ) ? 'active' : 'inactive'}"
|
|
(button :onclick 'swaync-client -t'
|
|
:onrightclick 'swaync-client -d'
|
|
:tooltip "${jq(notification_center_info,'.count','r')} unread notifications"
|
|
"${!jq(notification_center_info,'.dnd','r') ? '' : ''}")))
|