lazy push before updates

This commit is contained in:
Noella
2025-12-30 13:23:54 -07:00
parent 44ab8019bc
commit 34b678e020
30 changed files with 727 additions and 208 deletions

20
theme/titlebar.lua Normal file
View File

@@ -0,0 +1,20 @@
local gmc = require("theme.gmc")
local icon_path = "/usr/share/icons/Papirus-Dark/22x22"
local titlebar = {}
titlebar.titlebar_fg_normal = gmc.color["black"]
titlebar.titlebar_fg_focus = gmc.color["green100"]
titlebar.titlebar_close_button_normal = icon_path .. "/actions/window-close.svg"
titlebar.titlebar_close_button_focus = icon_path .. "/actions/window-close.svg"
titlebar.titlebar_minimize_button_normal = icon_path .. "/actions/list-remove.svg"
titlebar.titlebar_minimize_button_focus = icon_path .. "/actions/list-remove.svg"
titlebar.titlebar_maximized_button_normal_inactive = icon_path .. "/actions/list-add.svg"
titlebar.titlebar_maximized_button_focus_inactive = icon_path .. "/actions/list-add.svg"
titlebar.titlebar_maximized_button_normal_active = icon_path .. "/actions/go-bottom.svg"
titlebar.titlebar_maximized_button_focus_active = icon_path .. "/actions/go-bottom.svg"
return titlebar