Guest User

empty-container

a guest
Sep 20th, 2021
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local awful = require("awful")
  2. local wibox = require("wibox")
  3. local gears = require("gears")
  4. local beautiful = require("beautiful")
  5.  
  6. local calendar = wibox.widget.calendar.month(
  7.   os.date('*t')
  8.   )
  9.  
  10. --- Container ---
  11. local container = awful.popup {
  12.   ontop = true,
  13.   current_position = "top",
  14.   bg = "#ffffff00",
  15.   visible = false,
  16.   shape = beautiful.client_shape_rounded,
  17.   border_width = 0,
  18.   type = normal,
  19.   widget = calendar
  20. }
  21.  
  22. return container
  23.  
Advertisement
Add Comment
Please, Sign In to add comment