28 lines
882 B
Lua
28 lines
882 B
Lua
--DOC_GEN_IMAGE --DOC_HIDE
|
|
local parent = ... --DOC_HIDE
|
|
local wibox = require("wibox") --DOC_HIDE
|
|
local beautiful = require( "beautiful" ) --DOC_HIDE
|
|
local Pango = require("lgi").Pango --DOC_HIDE
|
|
require("_date") --DOC_HIDE
|
|
|
|
-- Beautiful fake get_font --DOC_HIDE
|
|
local f = Pango.FontDescription.from_string("monospace 10") --DOC_HIDE
|
|
beautiful.get_font = function() return f end --DOC_HIDE
|
|
|
|
-- Fake beautiful theme --DOC_HIDE
|
|
beautiful.fg_focus = "#ff9800" --DOC_HIDE
|
|
beautiful.bg_focus = "#b9214f" --DOC_HIDE
|
|
|
|
local cal = wibox.widget {
|
|
date = os.date("*t"),
|
|
font = "Monospace 8",
|
|
spacing = 2,
|
|
week_numbers = false,
|
|
start_sunday = false,
|
|
widget = wibox.widget.calendar.year
|
|
}
|
|
|
|
parent:add(cal) --DOC_HIDE
|
|
local w,h = parent:fit({dpi=96}, 9999, 9999) --DOC_HIDE
|
|
return w+30, h --DOC_HIDE
|