Skip to content

Commit

Permalink
fix: remove superfluous quotation mark
Browse files Browse the repository at this point in the history
NeoVim tried to be helpful.

Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
  • Loading branch information
Ryuno-Ki committed Oct 11, 2024
1 parent 9604aef commit f5e81de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weather-api-widget/weather.lua
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ local function worker(user_args)
})

table.insert(temp_below, wibox.widget {
markup = '<span foreground=""'
markup = '<span foreground="'
.. (tonumber(hour.temp_c) > 0 and '#2E3440' or '#ECEFF4') .. '">'
.. string.format('%.0f', hour.temp_c) .. '°' .. '</span>',
align = 'center',
Expand Down

0 comments on commit f5e81de

Please sign in to comment.