Merge pull request #1604 from Lawful-Lazy/master

Add naughty presets `ok`, `warn` and `info`.
This commit is contained in:
Emmanuel Lepage Vallée 2017-03-04 22:14:35 -05:00 committed by GitHub
commit 2b88c92d52
1 changed files with 16 additions and 1 deletions

View File

@ -95,7 +95,22 @@ naughty.config.presets = {
bg = "#ff0000",
fg = "#ffffff",
timeout = 0,
}
},
ok = {
bg = "#00bb00",
fg = "#ffffff",
timeout = 5,
},
info = {
bg = "#0000ff",
fg = "#ffffff",
timeout = 5,
},
warn = {
bg = "#ffaa00",
fg = "#000000",
timeout = 10,
},
}
--- Defaults for `naughty.notify`.