Initial Commit

This commit is contained in:
2021-04-26 11:20:41 +03:00
commit 5a99cb9e82
125 changed files with 6148 additions and 0 deletions

44
layout/init.lua Normal file
View File

@@ -0,0 +1,44 @@
local awful = require('awful')
local top_bar = require('layout.top-bar')
local bottom_bar = require('layout.bottom-bar')
local left_panel = require('layout.left-panel')
local key_grabber
-- Create a wibox for each screen and add it
awful.screen.connect_for_each_screen(function(s)
if s.index == 1 then
s.top_bar = top_bar(s, true)
s.bottom_bar = bottom_bar(s, true)
else
s.top_bar = top_bar(s, false)
s.bottom_bar = bottom_bar(s, false)
end
end)
-- Hide bars when app go fullscreen
function updateBarsVisibility()
for s in screen do
if s.selected_tag then
local fullscreen = s.selected_tag.fullscreenMode
s.top_bar.visible = not fullscreen
s.bottom_bar.visible = not fullscreen
end
end
end
_G.tag.connect_signal('property::selected', function(t)
updateBarsVisibility()
end)
_G.client.connect_signal('property::fullscreen', function(c)
c.screen.selected_tag.fullscreenMode = c.fullscreen
updateBarsVisibility()
end)
_G.client.connect_signal('unmanage', function(c)
if c.fullscreen then
c.screen.selected_tag.fullscreenMode = false
updateBarsVisibility()
end
end)