15 lines
428 B
Lua
15 lines
428 B
Lua
--DOC_NO_USAGE
|
|
local parent = ... --DOC_HIDE
|
|
local wibox = require( "wibox" ) --DOC_HIDE
|
|
local beautiful = require( "beautiful" ) --DOC_HIDE
|
|
|
|
local my_imagebox = wibox.widget {
|
|
image = beautiful.awesome_icon,
|
|
resize = false,
|
|
widget = wibox.widget.imagebox
|
|
}
|
|
|
|
parent:add(my_imagebox) --DOC_HIDE
|
|
|
|
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|