Files
AwesomeWM-Config/theme/titlebar.lua
2025-12-30 13:23:54 -07:00

21 lines
913 B
Lua

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