Merge branch 'menubar-skip-comments-in-desktop-files' of git://github.com/blueyed/awesome
This commit is contained in:
commit
57b6433b53
|
@ -129,7 +129,9 @@ function utils.parse(file)
|
|||
-- Parse the .desktop file.
|
||||
-- We are interested in [Desktop Entry] group only.
|
||||
for line in io.lines(file) do
|
||||
if not desktop_entry and line == "[Desktop Entry]" then
|
||||
if line:find("^%s*#") then
|
||||
-- Skip comments.
|
||||
elseif not desktop_entry and line == "[Desktop Entry]" then
|
||||
desktop_entry = true
|
||||
else
|
||||
if line:sub(1, 1) == "[" and line:sub(-1) == "]" then
|
||||
|
|
Loading…
Reference in New Issue