summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLouie Shprung <lshprung@tutanota.com>2024-09-03 17:30:16 -0400
committerLouie Shprung <lshprung@tutanota.com>2024-09-03 17:30:16 -0400
commit027bf3ff497ead2ab69d1660e6928eea28530c64 (patch)
treea0cef5ab0c8a310bad2c8369d87ca7bcdb939742 /docs
parentbe1f2c2bce1ba5e81ce14e9cb82c0d2fb251b60e (diff)
Update default config
Diffstat (limited to 'docs')
-rw-r--r--docs/terminal-media-launcher-config.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/terminal-media-launcher-config.md b/docs/terminal-media-launcher-config.md
index a5bf674..b1ecca3 100644
--- a/docs/terminal-media-launcher-config.md
+++ b/docs/terminal-media-launcher-config.md
@@ -122,7 +122,7 @@ local function addEntries(parentGroup, startDir, filePattern, recursive)
if string.match(file, filePattern) then
table.insert(parentGroup.Entries, {
name = file,
- path = fullFilePath
+ path = '"' .. fullFilePath .. '"'
})
end
end
@@ -211,7 +211,7 @@ local function addEntries(parentGroup, startDir, filePattern, recursive)
if string.match(file, filePattern) then
table.insert(parentGroup.Entries, {
name = file,
- path = fullFilePath
+ path = '"' .. fullFilePath .. '"'
})
end
end