Skip to content

Commit

Permalink
complete redesign of #417, working now (tm)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka5W committed Nov 23, 2023
1 parent c2714b5 commit 2c58ef6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
13 changes: 7 additions & 6 deletions calendar-widget/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ Calendar widget for Awesome WM - slightly improved version of the `wibox.widget.

### Customization

| Name | Default | Description |
|---|---|---|
| theme | `naughty` | The theme to use |
| placement | `top` | The position of the popup |
| radius | 8 | The popup radius |
| start_sunday | false | Start the week on Sunday |
| Name | Default | Description |
|--------------|-----------|-------------------------------------|
| theme | `naughty` | The theme to use |
| placement | `top` | The position of the popup |
| radius | 8 | The popup radius |
| start_sunday | false | Start the week on Sunday |
| week_numbers | false | Show ISO week numbers (Mon = first) |

- themes:

Expand Down
23 changes: 14 additions & 9 deletions calendar-widget/calendar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ local function worker(user_args)
border = '#75715E'
},
naughty = {
bg = beautiful.notification_bg or beautiful.bg,
fg = beautiful.notification_fg or beautiful.fg,
focus_date_bg = beautiful.notification_fg or beautiful.fg,
focus_date_fg = beautiful.notification_bg or beautiful.bg,
bg = beautiful.notification_bg or beautiful.bg or beautiful.bg_normal,
fg = beautiful.notification_fg or beautiful.fg or beautiful.fg_normal,
focus_date_bg = beautiful.notification_fg or beautiful.fg or beautiful.fg_normal,
focus_date_fg = beautiful.notification_bg or beautiful.bg or beautiful.bg_normal,
weekend_day_bg = beautiful.bg_focus,
weekday_fg = beautiful.fg,
header_fg = beautiful.fg,
Expand All @@ -98,6 +98,7 @@ local function worker(user_args)
local next_month_button = args.next_month_button or 4
local previous_month_button = args.previous_month_button or 5
local start_sunday = args.start_sunday or false
local week_numbers = args.week_numbers or false

local styles = {}
local function rounded_shape(size)
Expand Down Expand Up @@ -154,11 +155,14 @@ local function worker(user_args)
widget:set_markup(props.markup(widget:get_text()))
end
-- 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)
and calendar_themes[theme].weekend_day_bg
or calendar_themes[theme].bg
local default_bg
if (flag == "normal") then
local d = { year = date.year, month = (date.month or 1), day = (date.day or 1) }
local weekday = tonumber(os.date('%w', os.time(d)))
default_bg = (weekday == 0 or weekday == 6)
and calendar_themes[theme].weekend_day_bg
or calendar_themes[theme].bg
end
local ret = wibox.widget {
{
{
Expand Down Expand Up @@ -186,6 +190,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 2c58ef6

Please sign in to comment.