awful: fix theme.taglist_squares usage
Signed-off-by: Damien Leone <damien.leone@gmail.com> Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
a08cdd040e
commit
17d1e6b741
|
@ -1158,6 +1158,7 @@ end
|
||||||
-- fg_focus The foreground color for selected tag.
|
-- fg_focus The foreground color for selected tag.
|
||||||
-- bg_urgent The background color for urgent tags.
|
-- bg_urgent The background color for urgent tags.
|
||||||
-- fg_urgent The foreground color for urgent tags.
|
-- fg_urgent The foreground color for urgent tags.
|
||||||
|
-- taglist_squares Optional: set "true" or nil to display the taglist squares.
|
||||||
-- @return A string to print.
|
-- @return A string to print.
|
||||||
function widget.taglist.label.all(t, args)
|
function widget.taglist.label.all(t, args)
|
||||||
if not args then args = {} end
|
if not args then args = {} end
|
||||||
|
@ -1176,12 +1177,12 @@ function widget.taglist.label.all(t, args)
|
||||||
fg_color = fg_focus
|
fg_color = fg_focus
|
||||||
end
|
end
|
||||||
if sel and sel:tags()[t] then
|
if sel and sel:tags()[t] then
|
||||||
if taglist_squares == nil or taglist_squares == true then
|
if not taglist_squares or taglist_squares == "true" then
|
||||||
background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarefw.png\""
|
background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarefw.png\""
|
||||||
end
|
end
|
||||||
elseif bg_urgent and fg_urgent then
|
elseif bg_urgent and fg_urgent then
|
||||||
for k, c in pairs(t:clients()) do
|
for k, c in pairs(t:clients()) do
|
||||||
if taglist_squares == nil or taglist_squares == true then
|
if not taglist_squares or taglist_squares == "true" then
|
||||||
background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarew.png\""
|
background = "resize=\"true\" image=\"@AWESOME_ICON_PATH@/taglist/squarew.png\""
|
||||||
end
|
end
|
||||||
if c.urgent then
|
if c.urgent then
|
||||||
|
|
Loading…
Reference in New Issue