ambevar-dotfiles/.config/demlo/demlorc

63 lines
1.8 KiB
Plaintext
Raw Normal View History

2014-11-10 00:01:48 +01:00
-- -*- mode:lua -*-
2014-10-15 10:53:26 +02:00
-- Demlo configuration file.
2014-07-01 09:16:10 +02:00
-- Remove embedded covers.
clearcovers = true
-- We do not use colors by default since it may not work properly on all
-- terminals. Feel free to turn it on if it works well on your system.
colors = true
-- Words that will be written as is and will not be turned to titlecase.
constants = ''
-- French
2015-02-26 10:54:01 +01:00
constants = constants .. ' un une de du des le la les et mais pour ni ou à a où contre entre chez dans sur que qui quoi comment quand '
2014-07-01 09:16:10 +02:00
-- German
2015-02-26 10:54:01 +01:00
constants = constants .. ' der die das den dem des ein eine einen eines einer einem im wo an am in bei aus mit nach seit von zu vom zur zum durch für gegen ohne um '
-- Spanish
constants = constants .. ' y '
2014-07-01 09:16:10 +02:00
-- Music
constants = constants .. " d'Acide JBX "
2014-10-06 22:25:39 +02:00
-- Extension support for external covers. This is a pattern-matching string. For
2014-10-15 10:53:26 +02:00
-- instance 'jpe?g' will match both 'jpg' and 'jpeg'. Case is ignored. The value
-- is ignored, use 'true' or anything else.
cover_extlist = { gif=true }
2014-10-06 22:25:39 +02:00
2014-10-15 10:53:26 +02:00
-- If true, extract covers from tags, copy covers in current folder, exclude
-- those outside the size boundaries.
2014-07-01 09:16:10 +02:00
covers = true
-- Default format.
format = 'ogg'
-- Use human readable output instead of machine-friendly output.
graphical = true
-- Root folder for output files.
2014-10-28 11:23:00 +01:00
library = os.getenv('HOME') .. '/music'
2014-07-01 09:16:10 +02:00
2014-10-15 10:53:26 +02:00
-- Do not complete tags with online database.
online = false
2014-07-01 09:16:10 +02:00
-- What to do if file exists.
overwrite = false
-- If false, show preview and exit before processing.
process = false
-- Re-encode.
recode = true
2014-10-15 10:53:26 +02:00
-- We recurse into subfolders when walking tree.
2014-07-01 09:16:10 +02:00
recursive = true
2014-10-15 10:53:26 +02:00
-- We copy file when the content is not modified.
rename = false
2014-07-01 09:16:10 +02:00
-- You might want to set one of the official scripts by default.
2014-11-10 00:01:48 +01:00
-- scripts = 'tag sub case filename cover format'
scripts = 'tag sub case filename cover'
2014-07-01 09:16:10 +02:00
-- End of configuration file.