blob: 5617c1a811321f508da351411ace44e6b180df1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local n = require("naughty").notification
---@class Quarrel
local quarrel = {}
--- Send a notification with the specified message
---@param message any
function quarrel.debug(message)
n { message = tostring(message) }
end
return quarrel
|