├── .gitlab-ci.yml ├── .gitmodules ├── AUTHORS ├── COPYING ├── NEWS ├── README.md ├── SPECIFICATION ├── config.h.meson ├── docs ├── ChangeLog ├── config.xsl ├── meson.build ├── notification-spec.xml ├── notify-send.xml ├── reference │ ├── libnotify.toml.in │ ├── meson.build │ └── urlmap.js └── releases │ ├── notification-spec-0.3.xml │ ├── notification-spec-0.4.xml │ ├── notification-spec-0.6.xml │ ├── notification-spec-0.7.xml │ ├── notification-spec-0.9.xml │ └── notification-spec-1.0.xml ├── libnotify.doap ├── libnotify ├── internal.h ├── launch-context.c ├── launch-context.h ├── libnotify.map ├── meson.build ├── notification-hints.h ├── notification.c ├── notification.h ├── notify-features.h.in ├── notify.c └── notify.h ├── meson.build ├── meson_options.txt ├── subprojects └── gi-docgen.wrap ├── tests ├── applet-critical.png ├── dewdop_leaf.jpg ├── meson.build ├── portal_template.py ├── test-action-icons.c ├── test-basic.c ├── test-default-action.c ├── test-error.c ├── test-gir.py ├── test-image.c ├── test-markup.c ├── test-multi-actions.c ├── test-persistence.c ├── test-removal.c ├── test-replace-widget.c ├── test-replace.c ├── test-resident.c ├── test-rtl.c ├── test-server-info.c ├── test-size-changes.c ├── test-transient.c ├── test-urgency.c ├── test-xy-actions.c ├── test-xy-stress.c ├── test-xy.c └── test_notify_send.py └── tools ├── meson.build └── notify-send.c /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/COPYING -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/README.md -------------------------------------------------------------------------------- /SPECIFICATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/SPECIFICATION -------------------------------------------------------------------------------- /config.h.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/config.h.meson -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/config.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/config.xsl -------------------------------------------------------------------------------- /docs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/meson.build -------------------------------------------------------------------------------- /docs/notification-spec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/notification-spec.xml -------------------------------------------------------------------------------- /docs/notify-send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/notify-send.xml -------------------------------------------------------------------------------- /docs/reference/libnotify.toml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/reference/libnotify.toml.in -------------------------------------------------------------------------------- /docs/reference/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/reference/meson.build -------------------------------------------------------------------------------- /docs/reference/urlmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/reference/urlmap.js -------------------------------------------------------------------------------- /docs/releases/notification-spec-0.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-0.3.xml -------------------------------------------------------------------------------- /docs/releases/notification-spec-0.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-0.4.xml -------------------------------------------------------------------------------- /docs/releases/notification-spec-0.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-0.6.xml -------------------------------------------------------------------------------- /docs/releases/notification-spec-0.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-0.7.xml -------------------------------------------------------------------------------- /docs/releases/notification-spec-0.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-0.9.xml -------------------------------------------------------------------------------- /docs/releases/notification-spec-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/docs/releases/notification-spec-1.0.xml -------------------------------------------------------------------------------- /libnotify.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify.doap -------------------------------------------------------------------------------- /libnotify/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/internal.h -------------------------------------------------------------------------------- /libnotify/launch-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/launch-context.c -------------------------------------------------------------------------------- /libnotify/launch-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/launch-context.h -------------------------------------------------------------------------------- /libnotify/libnotify.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/libnotify.map -------------------------------------------------------------------------------- /libnotify/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/meson.build -------------------------------------------------------------------------------- /libnotify/notification-hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notification-hints.h -------------------------------------------------------------------------------- /libnotify/notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notification.c -------------------------------------------------------------------------------- /libnotify/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notification.h -------------------------------------------------------------------------------- /libnotify/notify-features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notify-features.h.in -------------------------------------------------------------------------------- /libnotify/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notify.c -------------------------------------------------------------------------------- /libnotify/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/libnotify/notify.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/meson_options.txt -------------------------------------------------------------------------------- /subprojects/gi-docgen.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/subprojects/gi-docgen.wrap -------------------------------------------------------------------------------- /tests/applet-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/applet-critical.png -------------------------------------------------------------------------------- /tests/dewdop_leaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/dewdop_leaf.jpg -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/portal_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/portal_template.py -------------------------------------------------------------------------------- /tests/test-action-icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-action-icons.c -------------------------------------------------------------------------------- /tests/test-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-basic.c -------------------------------------------------------------------------------- /tests/test-default-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-default-action.c -------------------------------------------------------------------------------- /tests/test-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-error.c -------------------------------------------------------------------------------- /tests/test-gir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-gir.py -------------------------------------------------------------------------------- /tests/test-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-image.c -------------------------------------------------------------------------------- /tests/test-markup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-markup.c -------------------------------------------------------------------------------- /tests/test-multi-actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-multi-actions.c -------------------------------------------------------------------------------- /tests/test-persistence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-persistence.c -------------------------------------------------------------------------------- /tests/test-removal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-removal.c -------------------------------------------------------------------------------- /tests/test-replace-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-replace-widget.c -------------------------------------------------------------------------------- /tests/test-replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-replace.c -------------------------------------------------------------------------------- /tests/test-resident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-resident.c -------------------------------------------------------------------------------- /tests/test-rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-rtl.c -------------------------------------------------------------------------------- /tests/test-server-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-server-info.c -------------------------------------------------------------------------------- /tests/test-size-changes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-size-changes.c -------------------------------------------------------------------------------- /tests/test-transient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-transient.c -------------------------------------------------------------------------------- /tests/test-urgency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-urgency.c -------------------------------------------------------------------------------- /tests/test-xy-actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-xy-actions.c -------------------------------------------------------------------------------- /tests/test-xy-stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-xy-stress.c -------------------------------------------------------------------------------- /tests/test-xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test-xy.c -------------------------------------------------------------------------------- /tests/test_notify_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tests/test_notify_send.py -------------------------------------------------------------------------------- /tools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tools/meson.build -------------------------------------------------------------------------------- /tools/notify-send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/libnotify/HEAD/tools/notify-send.c --------------------------------------------------------------------------------