Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local awful = require("awful")
- local wibox = require("wibox")
- local gears = require("gears")
- local beautiful = require("beautiful")
- local calendar = wibox.widget.calendar.month(
- os.date('*t')
- )
- --- Container ---
- local container = awful.popup {
- ontop = true,
- current_position = "top",
- bg = "#ffffff00",
- visible = false,
- shape = beautiful.client_shape_rounded,
- border_width = 0,
- type = normal,
- widget = calendar
- }
- return container
Advertisement
Add Comment
Please, Sign In to add comment