73 lines
1.7 KiB
Lua
73 lines
1.7 KiB
Lua
local awful = require('awful')
|
|
local left_panel = require('layout.left-panel')
|
|
local top_panel = require('layout.top-panel')
|
|
local right_panel = require('layout.right-panel')
|
|
|
|
-- Create a wibox panel for each screen and add it
|
|
screen.connect_signal("request::desktop_decoration", function(s)
|
|
|
|
if s.index == 1 then
|
|
-- Create the left_panel
|
|
s.left_panel = left_panel(s)
|
|
-- Create the Top bar
|
|
s.top_panel = top_panel(s, true)
|
|
else
|
|
-- Create the Top bar
|
|
s.top_panel = top_panel(s, false)
|
|
end
|
|
s.right_panel = right_panel(s)
|
|
s.right_panel_show_again = false
|
|
end)
|
|
|
|
|
|
-- Hide bars when app go fullscreen
|
|
function updateBarsVisibility()
|
|
for s in screen do
|
|
focused = awful.screen.focused()
|
|
if s.selected_tag then
|
|
local fullscreen = s.selected_tag.fullscreenMode
|
|
-- Order matter here for shadow
|
|
s.top_panel.visible = not fullscreen
|
|
if s.left_panel then
|
|
s.left_panel.visible = not fullscreen
|
|
end
|
|
if s.right_panel then
|
|
if fullscreen and focused.right_panel.visible then
|
|
focused.right_panel:toggle()
|
|
focused.right_panel_show_again = true
|
|
elseif not fullscreen and not focused.right_panel.visible and focused.right_panel_show_again then
|
|
focused.right_panel:toggle()
|
|
focused.right_panel_show_again = false
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
tag.connect_signal(
|
|
'property::selected',
|
|
function(t)
|
|
updateBarsVisibility()
|
|
end
|
|
)
|
|
|
|
client.connect_signal(
|
|
'property::fullscreen',
|
|
function(c)
|
|
if c.first_tag then
|
|
c.first_tag.fullscreenMode = c.fullscreen
|
|
end
|
|
updateBarsVisibility()
|
|
end
|
|
)
|
|
|
|
client.connect_signal(
|
|
'unmanage',
|
|
function(c)
|
|
if c.fullscreen then
|
|
c.screen.selected_tag.fullscreenMode = false
|
|
updateBarsVisibility()
|
|
end
|
|
end
|
|
)
|