nixos-config/modules/home-manager/ricing/awesomewm/dotfiles/main/error_handling.lua
2024-07-12 18:19:30 +09:00

10 lines
291 B
Lua

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)