layout-machi/init.lua

36 lines
866 B
Lua
Raw Normal View History

2019-07-13 00:04:39 +02:00
local layout = require(... .. ".layout")
local editor = require(... .. ".editor")
local switcher = require(... .. ".switcher")
local default_editor = editor.create()
local default_layout = layout.create(
function (tag)
return "default+" .. tag.name
end,
default_editor)
2019-07-13 14:30:38 +02:00
local gcolor = require("gears.color")
local beautiful = require("beautiful")
local icon_raw
2019-07-13 14:30:38 +02:00
local source = debug.getinfo(1, "S").source
if source:sub(1, 1) == "@" then
icon_raw = source:match("^@(.-)[^/]+$") .. "icon.png"
end
local function get_icon()
if icon_raw ~= nil then
return gcolor.recolor_image(icon_raw, beautiful.fg_normal)
else
return nil
end
2019-07-13 14:30:38 +02:00
end
2019-07-13 00:04:39 +02:00
2019-07-12 00:06:40 +02:00
return {
2019-07-13 00:04:39 +02:00
layout = layout,
editor = editor,
switcher = switcher,
default_editor = default_editor,
default_layout = default_layout,
icon_raw = icon_raw,
get_icon = get_icon,
2019-07-12 00:06:40 +02:00
}