Merge pull request #2589 from psychon/theme_path
Make beautiful.theme_path actually work again
This commit is contained in:
commit
86ab272045
|
@ -194,9 +194,10 @@ function beautiful.init(config)
|
||||||
-- Expand the '~' $HOME shortcut
|
-- Expand the '~' $HOME shortcut
|
||||||
config = config:gsub("^~/", homedir .. "/")
|
config = config:gsub("^~/", homedir .. "/")
|
||||||
local dir = Gio.File.new_for_path(config):get_parent()
|
local dir = Gio.File.new_for_path(config):get_parent()
|
||||||
beautiful.theme_path = dir and (dir:get_path().."/") or nil
|
rawset(beautiful, "theme_path", dir and (dir:get_path().."/") or nil)
|
||||||
theme = protected_call(dofile, config)
|
theme = protected_call(dofile, config)
|
||||||
elseif type(config) == 'table' then
|
elseif type(config) == 'table' then
|
||||||
|
rawset(beautiful, "theme_path", nil)
|
||||||
theme = config
|
theme = config
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue