awesome/tests/examples/awful/notification/corner.lua

23 lines
424 B
Lua

--DOC_HIDE_ALL
--DOC_GEN_IMAGE
local naughty = require("naughty") --DOC_HIDE
for _, pos in ipairs {
"top_left",
"top_middle",
"top_right",
"bottom_left",
"bottom_middle",
"bottom_right",
"middle",
} do
naughty.notify {
title = pos,
position = pos,
message = "",
}
end
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80