Merge pull request #104 from cuu/master

awesome naughty timeout
This commit is contained in:
GNU 2018-09-22 18:40:42 +08:00 committed by GitHub
commit 1b042adb54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ local hotkeys_popup = require("awful.hotkeys_popup").widget
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
text = awesome.startup_errors,timeout=3 })
end
-- Handle runtime errors after startup
@ -33,7 +33,7 @@ do
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = tostring(err) })
text = tostring(err),timeout=3 })
in_error = false
end)
end