Add naughty presets `ok`, `warn` and `info`.

This commit is contained in:
Samuel Hunter 2017-02-25 13:19:53 -08:00
parent 052cda939b
commit 97287596e2
1 changed files with 16 additions and 1 deletions

View File

@ -93,7 +93,22 @@ naughty.config.presets = {
bg = "#ff0000", bg = "#ff0000",
fg = "#ffffff", fg = "#ffffff",
timeout = 0, 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`. --- Defaults for `naughty.notify`.