2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/plugins/docsettingtweak.koplugin/directory_defaults_template.lua
2019-10-08 17:14:38 +02:00

39 lines
912 B
Lua

return {--do NOT change this line
--HELP:
-- You can override default settings for documents per directory in this file.
-- The directories must be under the home folder.
-- You can find settings to change in the metadata.lua in the .sdr folder.
-- The path must start with "/" (absolute path).
-- The path must not end with a "/" it must end with the folder name.
-- syntax:
-- ["path/to/folder"] = {
-- ["setting_to_override"] = value,
-- },
-- examples:
--[[
["/mnt/us/documents/hebrew"] = {
["inverse_reading_order"] = true
},
["/mnt/onboard/smalltext"] = {
["font_size"] = 34,
["line_space_percent"] = 130,
},
["/sdcard/Books/smalltext"] = {
["font_size"] = 34,
["line_space_percent"] = 130,
},
--]]
-- comment out line ("--" at line start) to disable
-- ADD YOUR DEFAULTS HERE:
}--do NOT change this line