Minor cleanup

This commit is contained in:
2023-08-21 16:09:33 -07:00
parent eccf6c17b4
commit 459e31371f
5 changed files with 22 additions and 10 deletions

View File

@ -95,14 +95,6 @@ local function start()
-- Prepare screens
awful.screen.connect_for_each_screen(
function(s)
-- Run module screen initialization methods
for _, mod in pairs(modules) do
if (mod["for_each_screen"] ~= nil) then
mod["for_each_screen"](s)
end
end
-- Create tag table
s.tagger = tagger:new(s)
@ -223,6 +215,14 @@ local function start()
rightside
}
}
-- Run module screen initialization methods
for _, mod in pairs(modules) do
if (mod["for_each_screen"] ~= nil) then
mod["for_each_screen"](s)
end
end
end
)
end