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

23
theme/layout_icons.lua Normal file
View File

@@ -0,0 +1,23 @@
local gfs = require("gears.filesystem")
local theme_path = gfs.get_themes_dir()
local icons = {}
icons.layout_fairh = theme_path .. "zenburn/layouts/fairh.png"
icons.layout_fairv = theme_path .. "zenburn/layouts/fairv.png"
icons.layout_floating = theme_path .. "zenburn/layouts/floating.png"
icons.layout_magnifier = theme_path .. "zenburn/layouts/magnifier.png"
icons.layout_max = theme_path .. "zenburn/layouts/max.png"
icons.layout_fullscreen = theme_path .. "zenburn/layouts/fullscreen.png"
icons.layout_tilebottom = theme_path .. "zenburn/layouts/tilebottom.png"
icons.layout_tileleft = theme_path .. "zenburn/layouts/tileleft.png"
icons.layout_tile = theme_path .. "zenburn/layouts/tile.png"
icons.layout_tiletop = theme_path .. "zenburn/layouts/tiletop.png"
icons.layout_spiral = theme_path .. "zenburn/layouts/spiral.png"
icons.layout_dwindle = theme_path .. "zenburn/layouts/dwindle.png"
icons.layout_cornernw = theme_path .. "zenburn/layouts/cornernw.png"
icons.layout_cornerne = theme_path .. "zenburn/layouts/cornerne.png"
icons.layout_cornersw = theme_path .. "zenburn/layouts/cornersw.png"
icons.layout_cornerse = theme_path .. "zenburn/layouts/cornerse.png"
return icons