fix: remove superfluous quotation mark
NeoVim tried to be helpful. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
parent
9604aef6ba
commit
f5e81dea79
|
@ -439,7 +439,7 @@ local function worker(user_args)
|
||||||
})
|
})
|
||||||
|
|
||||||
table.insert(temp_below, wibox.widget {
|
table.insert(temp_below, wibox.widget {
|
||||||
markup = '<span foreground=""'
|
markup = '<span foreground="'
|
||||||
.. (tonumber(hour.temp_c) > 0 and '#2E3440' or '#ECEFF4') .. '">'
|
.. (tonumber(hour.temp_c) > 0 and '#2E3440' or '#ECEFF4') .. '">'
|
||||||
.. string.format('%.0f', hour.temp_c) .. '°' .. '</span>',
|
.. string.format('%.0f', hour.temp_c) .. '°' .. '</span>',
|
||||||
align = 'center',
|
align = 'center',
|
||||||
|
|
Loading…
Reference in New Issue