awesome/lib/beautiful.lua.in

76 lines
2.0 KiB
Lua

----------------------------------------------------------------------------
-- @author Damien Leone <damien.leone@gmail.com>
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2008 Damien Leone, Julien Danjou
-- @release @AWESOME_VERSION@
----------------------------------------------------------------------------
-- Grab environment
local io = io
local print = print
local setmetatable = setmetatable
local util = require("awful.util")
local package = package
local capi =
{
screen = screen,
awesome = awesome,
image = image
}
local module_name = "beautiful"
--- Theme library
module("beautiful")
-- Local data
local theme = {}
--- Get a value directly.
-- @param key The key.
-- @return The value.
function __index(self, key)
if theme[key] then
return theme[key]
end
end
--- Init function, should be runned at the beginning of configuration file.
-- @param path The theme file path.
function init(path)
if path then
local f = io.open(path)
if not f then
return print("E: unable to load theme " .. path)
end
for key, value in f:read("*all"):gsub("^","\n"):gmatch("\n[\t ]*([a-z_]+)[\t ]*=[\t ]*([^\n\t]+)") do
if key == "wallpaper_cmd" then
for s = 1, capi.screen.count() do
util.spawn(value, s)
end
elseif key == "font" then
capi.awesome.font = value
elseif key == "fg_normal" then
capi.awesome.fg = value
elseif key == "bg_normal" then
capi.awesome.bg = value
end
-- Store.
theme[key] = value
end
f:close()
end
end
--- Get the current theme.
-- @return The current theme table.
function get()
return package.loaded[module_name]
end
setmetatable(package.loaded[module_name], package.loaded[module_name])
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80