92 lines
3.4 KiB
Lua
92 lines
3.4 KiB
Lua
------------------------------------------------------------------------------------------
|
|
-- This is the main themeing file, here are most colors changed --
|
|
-- If you want to change individual widget colors you will need to edit them seperately --
|
|
------------------------------------------------------------------------------------------
|
|
|
|
-- Awesome Libs
|
|
local color = require("src.theme.colors")
|
|
local cat = require("src.theme.catppuccin")
|
|
local dpi = require("beautiful.xresources").apply_dpi
|
|
local gears = require("gears")
|
|
local awful = require("awful")
|
|
|
|
-- Icon directory path
|
|
local icondir = awful.util.getdir("config") .. "src/assets/icons/titlebar/"
|
|
|
|
Theme.font = user_vars.font.bold
|
|
|
|
Theme.bg_normal = cat["Base"]
|
|
Theme.bg_focus = cat["Base"]
|
|
Theme.bg_urgent = cat["Red"]
|
|
Theme.bg_minimize = cat["Text"]
|
|
Theme.bg_systray = cat["Text"]
|
|
|
|
Theme.fg_normal = cat["Text"]
|
|
Theme.fg_focus = cat["Text"]
|
|
Theme.fg_urgent = cat["Text"]
|
|
Theme.fg_minimize = cat["Text"]
|
|
|
|
Theme.useless_gap = dpi(5) -- Change this to 0 if you dont like window gaps
|
|
Theme.border_width = dpi(2) -- Change this to 0 if you dont like borders
|
|
Theme.border_normal = cat["Base"]
|
|
--Theme.border_focus = color["Red"] -- Doesnt work, no idea why; workaround is in signals.lua
|
|
Theme.border_marked = cat["Red"]
|
|
|
|
Theme.menu_submenu_icon = Theme_path .. "assets.ArchLogo.png"
|
|
Theme.menu_height = dpi(40)
|
|
Theme.menu_width = dpi(200)
|
|
Theme.menu_bg_normal = cat["Surface0"]
|
|
Theme.menu_bg_focus = cat["Surface1"]
|
|
Theme.menu_fg_focus = cat["Text"]
|
|
Theme.menu_border_color = cat["Base"]
|
|
Theme.menu_border_width = dpi(0)
|
|
Theme.menu_shape = function(cr, width, heigth)
|
|
gears.shape.rounded_rect(cr, width, heigth, 15)
|
|
end
|
|
|
|
Theme.taglist_fg_focus = cat["Base"]
|
|
Theme.taglist_bg_focus = cat["Text"]
|
|
|
|
Theme.tooltip_border_color = cat["Surface1"]
|
|
Theme.tooltip_bg = cat["Surface0"]
|
|
Theme.tooltip_fg = cat["Yellow"]
|
|
Theme.tooltip_border_width = dpi(4)
|
|
Theme.tooltip_gaps = dpi(15)
|
|
Theme.tooltip_shape = function(cr, width, heigth)
|
|
gears.shape.rounded_rect(cr, width, heigth, 5)
|
|
end
|
|
|
|
Theme.notification_spacing = dpi(20)
|
|
|
|
Theme.titlebar_close_button_normal = icondir .. "close.svg"
|
|
Theme.titlebar_maximized_button_normal = icondir .. "maximize.svg"
|
|
Theme.titlebar_minimize_button_normal = icondir .. "minimize.svg"
|
|
Theme.titlebar_maximized_button_active = icondir .. "maximize.svg"
|
|
Theme.titlebar_maximized_button_inactive = icondir .. "maximize.svg"
|
|
|
|
Theme.bg_systray = color["BlueGrey800"]
|
|
Theme.systray_icon_spacing = dpi(10)
|
|
|
|
Theme.hotkeys_bg = cat["Base"]
|
|
Theme.hotkeys_fg = cat["Text"]
|
|
Theme.hotkeys_border_width = 0
|
|
Theme.hotkeys_shape = function(cr, width, height)
|
|
gears.shape.rounded_rect(cr, width, height, 10)
|
|
end
|
|
Theme.hotkeys_description_font = user_vars.font.bold
|
|
|
|
-- Icon directory path
|
|
local layout_path = Theme_path .. "../assets/layout/"
|
|
|
|
-- Here are the icons for the layouts defined, if you want to add more layouts go to main/layouts.lua
|
|
Theme.layout_floating = layout_path .. "floating.svg"
|
|
Theme.layout_tile = layout_path .. "tile.svg"
|
|
Theme.layout_dwindle = layout_path .. "dwindle.svg"
|
|
Theme.layout_fairh = layout_path .. "fairh.svg"
|
|
Theme.layout_fairv = layout_path .. "fairv.svg"
|
|
Theme.layout_fullscreen = layout_path .. "fullscreen.svg"
|
|
Theme.layout_max = layout_path .. "max.svg"
|
|
Theme.layout_cornerne = layout_path .. "cornerne.svg"
|
|
Theme.layout_cornernw = layout_path .. "cornernw.svg"
|
|
Theme.layout_cornerse = layout_path .. "cornerse.svg"
|
|
Theme.layout_cornersw = layout_path .. "cornersw.svg"
|