diff --git a/lib/awful/widget.lua.in b/lib/awful/widget.lua.in index 03fdbddf9..287acc5e8 100644 --- a/lib/awful/widget.lua.in +++ b/lib/awful/widget.lua.in @@ -142,10 +142,10 @@ local function widget_tasklist_label_common(c, args) local bg_focus = args.bg_focus or theme.tasklist_bg_focus or theme.bg_focus local fg_urgent = args.fg_urgent or theme.tasklist_fg_urgent or theme.fg_urgent local bg_urgent = args.bg_urgent or theme.tasklist_bg_urgent or theme.bg_urgent - local text = "" + local text = "" local name if c.floating then - text = "" + text = text.."" end if c.minimized then name = util.escape(c.icon_name) or "" @@ -154,14 +154,14 @@ local function widget_tasklist_label_common(c, args) end if capi.client.focus == c then if bg_focus and fg_focus then - text = text .. " "..name.." " + text = text .. ""..name.."" else - text = text .. " "..name.." " + text = text .. name end elseif c.urgent and bg_urgent and fg_urgent then - text = text .. " "..name.." " + text = text .. ""..name.."" else - text = text .. " "..name.." " + text = text .. name end return text end