Skip to content

Commit

Permalink
added option to show week numbers, possible fix for #316
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka5W committed Oct 8, 2023
1 parent 782f271 commit 3fcb00c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions calendar-widget/calendar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ local function worker(user_args)
-- Change bg color for weekends
local d = { year = date.year, month = (date.month or 1), day = (date.day or 1) }
local weekday = tonumber(os.date('%w', os.time(d)))
local default_bg = (weekday == 0 or weekday == 6)
local default_bg = (flag == 'focus' or flag == 'normal') and (weekday == 0 or weekday == 6)
and calendar_themes[theme].weekend_day_bg
or calendar_themes[theme].bg
local ret = wibox.widget {
Expand All @@ -174,7 +174,7 @@ local function worker(user_args)
shape_border_color = props.border_color or '#000000',
shape_border_width = props.border_width or 0,
fg = props.fg_color or calendar_themes[theme].fg,
bg = props.bg_color or default_bg,
bg = default_bg,
widget = wibox.container.background
}

Expand All @@ -187,6 +187,7 @@ local function worker(user_args)
fn_embed = decorate_cell,
long_weekdays = true,
start_sunday = start_sunday,
week_numbers = week_numbers,
widget = wibox.widget.calendar.month
}

Expand Down

0 comments on commit 3fcb00c

Please sign in to comment.