Add config files for awesomewm, alacritty, picom and rofi

This commit is contained in:
crylia
2021-09-12 22:59:41 +02:00
commit b380e753b1
94 changed files with 4445 additions and 0 deletions

18
awesome/main/layouts.lua Normal file
View File

@@ -0,0 +1,18 @@
------------------------------------------------------------------------------------------
-- Layout class, if you want to add or remove layouts from the list do it in this table --
------------------------------------------------------------------------------------------
-- Awesome Libs
local awful = require("awful")
local _M = { }
function _M.get()
local layouts = {
awful.layout.suit.tile,
awful.layout.suit.floating,
}
return layouts
end
return _M.get