Merge branch 'master' of git://github.com/barlik/awesome

This commit is contained in:
Uli Schlachter 2015-01-10 01:22:23 +01:00
commit 462518f926
1 changed files with 8 additions and 0 deletions

View File

@ -196,6 +196,14 @@ function taglist.filter.noempty(t, args)
return #t:clients() > 0 or t.selected return #t:clients() > 0 or t.selected
end end
--- Filtering function to include selected tags on the screen.
-- @param t The tag.
-- @param args unused list of extra arguments.
-- @return true if t is not empty, else false
function taglist.filter.selected(t, args)
return t.selected
end
--- Filtering function to include all tags on the screen. --- Filtering function to include all tags on the screen.
-- @param t The tag. -- @param t The tag.
-- @param args unused list of extra arguments. -- @param args unused list of extra arguments.