awesome-wm-widgets/_widgets/calendar-widget.md

57 lines
1.8 KiB
Markdown
Raw Normal View History

2019-12-15 21:38:54 +01:00
---
layout: page
---
# Calendar Widget
2019-12-16 04:09:49 +01:00
Calendar widget for Awesome WM - slightly improved version of the `wibox.widget.calendar`.
2019-12-15 21:38:54 +01:00
2019-12-16 04:09:49 +01:00
## Features
2019-12-15 21:38:54 +01:00
2019-12-16 04:09:49 +01:00
- mouse support: scroll up - shows next month, scroll down - previous
- themes:
2019-12-16 04:14:55 +01:00
| Name | Screenshot |
|---|---|
|nord (default) | ![nord_theme](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/nord.png) |
| outrun | ![outrun_theme](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/outrun.png) |
2020-02-02 19:53:06 +01:00
| light | ![outrun_theme](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/light.png) |
| dark | ![outrun_theme](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/dark.png) |
2019-12-16 04:14:55 +01:00
2019-12-16 04:09:49 +01:00
- setup widget placement
top center - in case you clock is centered:
![calendar_top](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/calendar_top.png)
top right - for default awesome config:
![calendar_top_right](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/calendar_top_right.png)
bottom right - in case your wibar at the bottom:
![calendar_bottom_right](../awesome-wm-widgets/assets/img/screenshots/calendar-widget/calendar_bottom_right.png)
## How to use
2019-12-15 21:38:54 +01:00
2020-02-02 19:53:06 +01:00
This widget needs an 'anchor' - another widget which triggers visibility of the calendar. Default `mytextclock` is the perfect candidate!
Just after mytextclock is instantiated, create the widget and add the mouse listener to it.
2019-12-15 21:38:54 +01:00
```lua
local calendar_widget = require("awesome-wm-widgets.calendar-widget.calendar")
-- ...
-- Create a textclock widget
mytextclock = wibox.widget.textclock()
2019-12-16 04:09:49 +01:00
-- default
2020-02-02 19:53:06 +01:00
local cw = calendar_widget()
2019-12-16 04:09:49 +01:00
-- or customized
2020-02-02 19:53:06 +01:00
local cw = calendar_widget({
2019-12-16 04:09:49 +01:00
theme = 'outrun',
placement = 'bottom_right'
})
mytextclock:connect_signal("button::press",
2019-12-15 21:38:54 +01:00
function(_, _, _, button)
2019-12-16 04:09:49 +01:00
if button == 1 then cw.toggle() end
2019-12-15 21:38:54 +01:00
end)
2019-12-16 04:09:49 +01:00
```