18 lines
371 B
Lua
18 lines
371 B
Lua
|
local naughty = require('naughty')
|
||
|
|
||
|
return (function()
|
||
|
local status, settings = pcall(function()
|
||
|
return dofile(os.getenv('HOME') .. '/.config/awesome/settings.lua')
|
||
|
end)
|
||
|
if status then
|
||
|
return settings
|
||
|
else
|
||
|
naughty.notify({
|
||
|
preset = naughty.config.presets.critical,
|
||
|
title = 'Error while parsing settings!',
|
||
|
text = settings,
|
||
|
})
|
||
|
return {}
|
||
|
end
|
||
|
end)()
|