24 lines
1.2 KiB
Lua
24 lines
1.2 KiB
Lua
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
|