summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--func/notifyerror.lua9
-rw-r--r--rc.lua1
2 files changed, 10 insertions, 0 deletions
diff --git a/func/notifyerror.lua b/func/notifyerror.lua
new file mode 100644
index 0000000..abd3329
--- /dev/null
+++ b/func/notifyerror.lua
@@ -0,0 +1,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)
diff --git a/rc.lua b/rc.lua
index aae82b6..061cccf 100644
--- a/rc.lua
+++ b/rc.lua
@@ -16,6 +16,7 @@ startup = not awesome.get_xproperty("awesome_session_started")
awesome.set_xproperty("awesome_session_started", true)
-- import modules
+require("func.notifyerror")
require("theme") -- load first
require("layouts") -- load before bar
pcall(require, "hosts." .. hostname) -- call override module if one exists