awesomerc: fix string escape
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
09fd61fdfa
commit
e52cd0017c
|
@ -107,7 +107,7 @@ function mytasklist.label(c, scr)
|
|||
text = "<bg image=\"@AWESOME_ICON_PATH@/floatingw.png\" align=\"right\"/>"
|
||||
end
|
||||
if client.focus_get() == c then
|
||||
text = text .. " <bg color='"..bg_focus.."'/><span color='"..awful.escape(fg_focus).."'>"..c.name.."</span> "
|
||||
text = text .. " <bg color='"..bg_focus.."'/><span color='"..fg_focus.."'>"..awful.escape(c.name).."</span> "
|
||||
else
|
||||
text = text .. " "..awful.escape(c.name).." "
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue