summaryrefslogtreecommitdiff
path: root/func/notifyerror.lua
blob: abd3329b5604ea129097d5854cd6d40d8f837bb3 (plain)
1
2
3
4
5
6
7
8
9
local naughty = require("naughty")

naughty.connect_signal("request::display_error", function(message, startup)
	naughty.notification {
		urgency = "critical",
		title   = "Oops, an error happened"..(startup and " during startup!" or "!"),
		message = message,
	}
end)