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

21 lines
394 B
Lua
Raw Normal View History

2017-07-02 04:39:47 +02:00
--DOC_HIDE_ALL
local naughty = require("naughty") --DOC_HIDE
for _, pos in ipairs {
"top_left",
"top_middle",
"top_right",
"bottom_left",
"bottom_middle",
"bottom_right",
} do
naughty.notify {
title = pos,
position = pos,
text = "",
}
end
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80