21 lines
1.1 KiB
Lua
21 lines
1.1 KiB
Lua
--------------------------------------------------
|
|
-- ██████╗██████╗ ██╗ ██╗██╗ ██╗ █████╗ --
|
|
-- ██╔════╝██╔══██╗╚██╗ ██╔╝██║ ██║██╔══██╗ --
|
|
-- ██║ ██████╔╝ ╚████╔╝ ██║ ██║███████║ --
|
|
-- ██║ ██╔══██╗ ╚██╔╝ ██║ ██║██╔══██║ --
|
|
-- ╚██████╗██║ ██║ ██║ ███████╗██║██║ ██║ --
|
|
-- ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝╚═╝ ╚═╝ --
|
|
--------------------------------------------------
|
|
local awful = require("awful")
|
|
|
|
Theme_path = awful.util.getdir("config") .. "/theme/crylia/"
|
|
Theme = {}
|
|
|
|
dofile(Theme_path .. "theme_variables.lua")
|
|
dofile(Theme_path .. "layouts.lua")
|
|
|
|
Theme.awesome_icon = Theme_path .. "assets/icons/ArchLogo.png"
|
|
Theme.awesome_subicon = Theme_path .. "assets/icons/ArchLogo.png"
|
|
|
|
return Theme
|