Update colors with catppuccin

This commit is contained in:
Hydroxycarbamide 2022-09-15 00:44:25 +02:00
parent 0ff84042ab
commit b725dccade
29 changed files with 162 additions and 138 deletions

View file

@ -4,6 +4,7 @@
-- Awesome Libs
local awful = require("awful")
local color = require("src.theme.colors")
local cat = require("src.theme.catppuccin")
local dpi = require("beautiful").xresources.apply_dpi
local gears = require("gears")
local wibox = require("wibox")
@ -34,7 +35,7 @@ return function(screen, programs)
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 10)
end,
bg = color["Grey900"],
bg = cat["Crust"],
widget = wibox.container.background,
id = "background"
},
@ -50,7 +51,7 @@ return function(screen, programs)
end
end
Hover_signal(dock_element.background, color["Grey800"], color["White"])
Hover_signal(dock_element.background, color["Grey800"], cat["Text"])
dock_element:connect_signal(
"button::press",
@ -77,7 +78,7 @@ return function(screen, programs)
local dock = awful.popup {
widget = wibox.container.background,
ontop = true,
bg = color["Grey900"],
bg = cat["Crust"],
visible = true,
screen = screen,
type = "dock",