diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index 0bf9d494..24c4918a 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -490,6 +490,10 @@ if capi.dbus then elseif data.member == "GetServerInfo" or data.member == "GetServerInformation" then -- name of notification app, name of vender, version return "s", "naughty", "s", "awesome", "s", capi.awesome.version:match("%d.%d"), "s", "1.0" + elseif data.member == "GetCapabilities" then + -- We actually do display the body of the message, we support , + -- and in the body and we handle static (non-animated) icons. + return "as", { "s", "body", "s", "body-markup", "s", "icon-static" } end end) @@ -506,6 +510,9 @@ if capi.dbus then + + +