From 56c8e6fe1681f62d4e44ef813d46e7a0c444b712 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 24 Mar 2014 01:10:45 +0100 Subject: [PATCH] Expand '~' in the path for beautiful.init This expands the tilde in the path to beautiful.init and changes the expansion in theme values to only match '^~/': tilde expansion is only meant to be expanded at the beginning. The latter is not really tested. --- lib/beautiful.lua.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/beautiful.lua.in b/lib/beautiful.lua.in index 8fdb9d07..54856821 100644 --- a/lib/beautiful.lua.in +++ b/lib/beautiful.lua.in @@ -76,17 +76,20 @@ end function beautiful.init(path) if path then local success + + -- try and grab user's $HOME directory and expand '~' + local homedir = os.getenv("HOME") + path = path:gsub("^~/", homedir .. "/") + success, theme = pcall(function() return dofile(path) end) if not success then return print("E: beautiful: error loading theme file " .. theme) elseif theme then - -- try and grab user's $HOME directory - local homedir = os.getenv("HOME") -- expand '~' if homedir then for k, v in pairs(theme) do - if type(v) == "string" then theme[k] = v:gsub("~", homedir) end + if type(v) == "string" then theme[k] = v:gsub("^~/", homedir .. "/") end end end