mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
luaa: add XDG_CONFIG_DIR as include path
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
e0816a3340
commit
8234da4517
1 changed files with 11 additions and 1 deletions
12
luaa.c
12
luaa.c
|
@ -949,6 +949,14 @@ luaA_parserc(const char *confpatharg, bool run)
|
|||
xdg_config_dirs = XDG_CONFIG_DIR;
|
||||
len = sizeof(XDG_CONFIG_DIR) - 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* add XDG_CONFIG_DIR (/etc/xdg/awesome by default) as include path */
|
||||
snprintf(path, sizeof(path),
|
||||
"package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"",
|
||||
XDG_CONFIG_DIR, XDG_CONFIG_DIR);
|
||||
luaA_dostring(globalconf.L, path);
|
||||
}
|
||||
|
||||
xdg_files = a_strsplit(xdg_config_dirs, len, ':');
|
||||
|
||||
|
@ -959,7 +967,9 @@ luaA_parserc(const char *confpatharg, bool run)
|
|||
confpath = p_new(char, len);
|
||||
a_strcpy(confpath, len, *buf);
|
||||
a_strcat(confpath, len, AWESOME_CONFIG_FILE);
|
||||
snprintf(path, sizeof(path), "package.path = package.path .. \";%s/awesome/?.lua\"", *buf);
|
||||
snprintf(path, sizeof(path),
|
||||
"package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"",
|
||||
*buf, *buf);
|
||||
luaA_dostring(globalconf.L, path);
|
||||
if(!ret)
|
||||
ret = luaA_loadrc(confpath, run);
|
||||
|
|
Loading…
Reference in a new issue