2019-12-12 04:05:01 +01:00
|
|
|
-------------------------------------------------
|
2019-12-12 22:26:46 +01:00
|
|
|
-- Calendar Widget for Awesome Window Manager
|
|
|
|
-- Shows the current month and supports scroll up/down to switch month
|
2019-12-12 04:05:01 +01:00
|
|
|
-- More details could be found here:
|
2019-12-12 22:26:46 +01:00
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/calendar-widget
|
2019-12-12 04:05:01 +01:00
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
|
|
|
-- @copyright 2019 Pavel Makhov
|
|
|
|
-------------------------------------------------
|
|
|
|
|
|
|
|
local awful = require("awful")
|
2019-12-13 04:27:12 +01:00
|
|
|
local beautiful = require("beautiful")
|
2019-12-12 04:05:01 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local gears = require("gears")
|
|
|
|
|
|
|
|
local calendar_widget = {}
|
|
|
|
|
2019-12-12 22:26:46 +01:00
|
|
|
local styles = {}
|
2019-12-13 04:27:12 +01:00
|
|
|
local function rounded_shape(size)
|
|
|
|
return function(cr, width, height)
|
|
|
|
gears.shape.rounded_rect(cr, width, height, size)
|
2019-12-12 22:26:46 +01:00
|
|
|
end
|
|
|
|
end
|
2019-12-13 04:27:12 +01:00
|
|
|
|
|
|
|
styles.month = {
|
|
|
|
padding = 4,
|
|
|
|
bg_color = '#2E3440',
|
|
|
|
border_width = 0,
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
2019-12-13 04:27:12 +01:00
|
|
|
|
|
|
|
styles.normal = {
|
|
|
|
markup = function(t) return t end,
|
|
|
|
shape = rounded_shape(4)
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
2019-12-13 04:27:12 +01:00
|
|
|
|
|
|
|
styles.focus = {
|
|
|
|
fg_color = '#000000',
|
|
|
|
bg_color = '#88C0D0',
|
|
|
|
markup = function(t) return '<b>' .. t .. '</b>' end,
|
|
|
|
shape = rounded_shape(4)
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
2019-12-13 04:27:12 +01:00
|
|
|
|
|
|
|
styles.header = {
|
|
|
|
fg_color = '#E5E9F0',
|
|
|
|
markup = function(t) return '<b>' .. t .. '</b>' end,
|
|
|
|
bg_color = '#2E3440'
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
2019-12-13 04:27:12 +01:00
|
|
|
|
|
|
|
styles.weekday = {
|
|
|
|
fg_color = '#88C0D0',
|
|
|
|
markup = function(t) return '<b>' .. t .. '</b>' end,
|
|
|
|
bg_color = '#2E3440',
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
local function decorate_cell(widget, flag, date)
|
2019-12-13 04:27:12 +01:00
|
|
|
if flag == 'monthheader' and not styles.monthheader then
|
2019-12-12 22:26:46 +01:00
|
|
|
flag = 'header'
|
|
|
|
end
|
|
|
|
|
2019-12-13 04:27:12 +01:00
|
|
|
-- highlight only today's day
|
2019-12-12 22:26:46 +01:00
|
|
|
if flag == 'focus' then
|
2019-12-13 04:27:12 +01:00
|
|
|
local today = os.date('*t')
|
|
|
|
if today.month ~= date.month then
|
2019-12-12 22:26:46 +01:00
|
|
|
flag = 'normal'
|
2019-12-12 04:05:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-12 22:26:46 +01:00
|
|
|
local props = styles[flag] or {}
|
|
|
|
if props.markup and widget.get_text and widget.set_markup then
|
|
|
|
widget:set_markup(props.markup(widget:get_text()))
|
|
|
|
end
|
|
|
|
-- Change bg color for weekends
|
2019-12-13 04:27:12 +01:00
|
|
|
local d = { year = date.year, month = (date.month or 1), day = (date.day or 1) }
|
2019-12-12 22:26:46 +01:00
|
|
|
local weekday = tonumber(os.date('%w', os.time(d)))
|
2019-12-13 04:27:12 +01:00
|
|
|
local default_bg = (weekday == 0 or weekday == 6) and '#3B4252' or '#2E3440'
|
2019-12-12 22:26:46 +01:00
|
|
|
local ret = wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
widget,
|
|
|
|
halign = 'center',
|
|
|
|
widget = wibox.container.place
|
|
|
|
},
|
|
|
|
margins = (props.padding or 2) + (props.border_width or 0),
|
2019-12-13 04:27:12 +01:00
|
|
|
widget = wibox.container.margin
|
2019-12-12 22:26:46 +01:00
|
|
|
},
|
2019-12-13 04:27:12 +01:00
|
|
|
shape = props.shape,
|
2019-12-12 22:26:46 +01:00
|
|
|
shape_border_color = props.border_color or '#b9214f',
|
|
|
|
shape_border_width = props.border_width or 0,
|
2019-12-13 04:27:12 +01:00
|
|
|
fg = props.fg_color or '#D8DEE9',
|
|
|
|
bg = props.bg_color or default_bg,
|
|
|
|
widget = wibox.container.background
|
2019-12-12 04:05:01 +01:00
|
|
|
}
|
|
|
|
|
2019-12-12 22:26:46 +01:00
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
local cal = wibox.widget {
|
2019-12-13 04:27:12 +01:00
|
|
|
date = os.date('*t'),
|
|
|
|
font = beautiful.get_font(),
|
2019-12-12 22:26:46 +01:00
|
|
|
fn_embed = decorate_cell,
|
|
|
|
long_weekdays = true,
|
2019-12-13 04:27:12 +01:00
|
|
|
widget = wibox.widget.calendar.month
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
|
|
|
|
2019-12-13 04:27:12 +01:00
|
|
|
local popup = awful.popup {
|
2019-12-12 22:26:46 +01:00
|
|
|
ontop = true,
|
|
|
|
visible = false,
|
|
|
|
shape = gears.shape.rounded_rect,
|
|
|
|
preferred_positions = top,
|
|
|
|
offset = { y = 5 },
|
2019-12-13 04:27:12 +01:00
|
|
|
border_width = 1,
|
|
|
|
border_color = '#4C566A',
|
|
|
|
widget = cal
|
2019-12-12 22:26:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
popup:buttons(
|
2019-12-13 04:27:12 +01:00
|
|
|
awful.util.table.join(
|
|
|
|
awful.button({}, 4, function()
|
|
|
|
local a = cal:get_date()
|
|
|
|
a.month = a.month + 1
|
|
|
|
cal:set_date(nil)
|
|
|
|
cal:set_date(a)
|
|
|
|
popup:set_widget(cal)
|
|
|
|
end),
|
|
|
|
awful.button({}, 5, function()
|
|
|
|
local a = cal:get_date()
|
|
|
|
a.month = a.month - 1
|
|
|
|
cal:set_date(nil)
|
|
|
|
cal:set_date(a)
|
|
|
|
popup:set_widget(cal)
|
|
|
|
end)
|
|
|
|
)
|
2019-12-12 22:26:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
function calendar_widget.toggle()
|
2019-12-13 04:27:12 +01:00
|
|
|
|
2019-12-12 22:26:46 +01:00
|
|
|
if popup.visible then
|
2019-12-13 04:27:12 +01:00
|
|
|
-- to faster render the calendar refresh it and just hide
|
|
|
|
cal:set_date(nil) -- the new date is not set without removing the old one
|
2019-12-12 22:26:46 +01:00
|
|
|
cal:set_date(os.date('*t'))
|
2019-12-13 04:27:12 +01:00
|
|
|
popup:set_widget(nil) -- just in case
|
2019-12-12 22:26:46 +01:00
|
|
|
popup:set_widget(cal)
|
2019-12-13 04:27:12 +01:00
|
|
|
popup.visible = not popup.visible
|
|
|
|
else
|
|
|
|
if not beautiful.calendar_placement then
|
|
|
|
awful.placement.top(popup, { margins = { top = 30 }, parent = awful.screen.focused() })
|
|
|
|
elseif beautiful.calendar_placement == 'top' then
|
|
|
|
awful.placement.top(popup, { margins = { top = 30 }, parent = awful.screen.focused() })
|
|
|
|
elseif beautiful.calendar_placement == 'top_right' then
|
|
|
|
awful.placement.top_right(popup, { margins = { top = 30, right = 10}, parent = awful.screen.focused() })
|
|
|
|
elseif beautiful.calendar_placement == 'bottom_right' then
|
|
|
|
awful.placement.bottom_right(popup, { margins = { bottom = 20, right = 10}, parent = awful.screen.focused() })
|
|
|
|
else
|
|
|
|
awful.placement.top(popup, { margins = { top = 30 }, parent = awful.screen.focused() })
|
|
|
|
end
|
2019-12-12 04:05:01 +01:00
|
|
|
|
2019-12-13 04:27:12 +01:00
|
|
|
popup.visible = true
|
2019-12-12 04:05:01 +01:00
|
|
|
|
2019-12-13 04:27:12 +01:00
|
|
|
end
|
|
|
|
end
|
2019-12-12 22:26:46 +01:00
|
|
|
|
|
|
|
return calendar_widget
|