Reno is the second iteration of the AWMTK-powered AwesomeWM config.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
455 B

-- Error logging module
local loghandler = io.open(os.getenv("HOME").."/.awesome_errors","w")
if awesome.startup_errors then
loghandler:write("[STARTUP] "..tostring(awesome.startup_errors).."\n")
end
do
local in_error = false
awesome.connect_signal("debug::error", function(err)
if in_error then return end
in_error = true
loghandler:write("[RUNTIME] "..tostring(err).."\n")
in_error = false
end)
end