Minor cleanup
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user