2017-07-02 04:39:47 +02:00
|
|
|
--DOC_HIDE_ALL
|
2017-08-13 08:54:03 +02:00
|
|
|
--DOC_GEN_IMAGE
|
2017-07-02 04:39:47 +02:00
|
|
|
local naughty = require("naughty") --DOC_HIDE
|
|
|
|
|
|
|
|
for _, pos in ipairs {
|
|
|
|
"top_left",
|
|
|
|
"top_middle",
|
|
|
|
"top_right",
|
|
|
|
"bottom_left",
|
|
|
|
"bottom_middle",
|
|
|
|
"bottom_right",
|
2019-06-08 22:10:14 +02:00
|
|
|
"middle",
|
2017-07-02 04:39:47 +02:00
|
|
|
} do
|
|
|
|
naughty.notify {
|
|
|
|
title = pos,
|
|
|
|
position = pos,
|
2017-08-13 08:54:03 +02:00
|
|
|
message = "",
|
2017-07-02 04:39:47 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|