yes, I'm very commit lazy

This commit is contained in:
2023-03-19 19:22:02 +01:00
parent 4f3fb75687
commit f399235db0
107 changed files with 11120 additions and 10906 deletions

View File

@@ -6,16 +6,20 @@
-- ╚██████╗██║ ██║ ██║ ███████╗██║██║ ██║ --
-- ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝╚═╝ ╚═╝ --
--------------------------------------------------
local beautiful = require("beautiful")
local gears = require("gears")
local beautiful = require('beautiful')
local gwallpaper = require('gears.wallpaper')
local gfilesystem = require('gears.filesystem')
local capi = {
awesome = awesome,
screen = screen,
}
Theme_path = gears.filesystem.get_configuration_dir() .. "/src/theme/"
Theme_path = gfilesystem.get_configuration_dir() .. '/src/theme/'
Theme = {}
awesome.set_preferred_icon_size(128)
-- Default font, change it in user_config, not here.
Theme.font = User_config.font.bold
@@ -51,17 +55,17 @@ Theme.hotkeys_label_fg = Theme_config.hotkeys.label_fg
-- Wallpaper
beautiful.wallpaper = User_config.wallpaper
capi.screen.connect_signal(
'request::wallpaper',
function(s)
if beautiful.wallpaper then
if type(beautiful.wallpaper) == 'string' then
gears.wallpaper.maximized(beautiful.wallpaper, s)
else
beautiful.wallpaper(s)
end
capi.screen.connect_signal('request::wallpaper', function(s)
if beautiful.wallpaper then
if type(beautiful.wallpaper) == 'string' then
gwallpaper.maximized(beautiful.wallpaper, s)
else
beautiful.wallpaper(s)
end
end
)
end)
beautiful.init(Theme)
-- Load titlebar
require('src.core.titlebar')()