--DOC_GEN_IMAGE
local beautiful = require("beautiful") --DOC_HIDE
local text = [[An important
notification
]]
--DOC_NEWLINE
require("naughty").notification {
title = "Hello world!",
text = text,
icon = beautiful.icon,
bg = "#0000ff",
fg = "#ff0000",
font = "verdana 14",
border_width = 1,
border_color = "#ff0000"
}
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80