Clean up dependencies, add install script

This commit is contained in:
Alexander Gehrke 2023-02-13 15:30:17 +01:00
parent 6621842607
commit 8f4b2a6f8a
4 changed files with 33 additions and 253 deletions

27
util/errors.lua Normal file
View file

@ -0,0 +1,27 @@
-- Notification library
local naughty = require("naughty")
-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
-- Handle runtime errors after startup
do
local in_error = false
awesome.connect_signal("debug::error", function (err)
-- Make sure we don't go into an endless error loop
if in_error then return end
in_error = true
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = err })
in_error = false
end)
end
-- }}}