Merge branch 'zdmgmail-master'

This commit is contained in:
Luca CPZ 2021-07-06 11:12:02 +01:00
commit f55ba48d7a
1 changed files with 34 additions and 8 deletions

View File

@ -96,14 +96,40 @@ end
-- Non-empty tag browsing -- Non-empty tag browsing
-- direction in {-1, 1} <-> {previous, next} non-empty tag -- direction in {-1, 1} <-> {previous, next} non-empty tag
function util.tag_view_nonempty(direction, sc) function util.tag_view_nonempty(direction,sc)
local s = sc or awful.screen.focused() local s = sc or awful.screen.focused()
local tags = s.tags
local tag = s.selected_tag
local idx = awful.tag.getidx()
for _ = 1, #s.tags do local looputil = function (start,e,inc)
awful.tag.viewidx(direction, s) for i = start, e, inc do
if #s.clients > 0 then local currentTag = s.tags[i]
if currentTag == tag then
return return
end end
if currentTag ~= nil then
if #currentTag:clients() > 0 then
currentTag:view_only()
return
end
end
end
return 1
end
if direction == 1 then
local r = looputil(idx+1,#tags,1)
if r then
looputil(1,idx,1)
end
end
if direction == -1 then
local r = looputil(idx-1,0,-1)
if r then
looputil(#tags,idx,-1)
end
end end
end end