@@ -41,8 +41,8 @@ $ dotdrop import ~/.xinitrc
4141```
4242
4343You can explicitely provide the key dotdrop should use for the dotfile entry
44- in the config file with the ` -K --dkey ` cli switch. Note that the provided
45- string will be sanitized for yaml. Also if the key already exists,
44+ in the config file with the ` -K --dkey ` cli switch. Note that the provided
45+ string will be sanitized for yaml. Also if the key already exists,
4646it will be appended with ` _<incremental_number> ` to avoid duplicates.
4747
4848If the key is not provided, it will be automatically created based on the
@@ -286,38 +286,50 @@ Also, if you find it useful and have been able to successfully speed up your ope
286286
287287## Environment variables
288288
289- The following environment variables can be used to specify different CLI options.
290- Note that CLI switches take precedence over environment variables (except for ` DOTDROP_FORCE_NODEBUG ` )
289+ The following environment variables can be used to specify different CLI options and change behaviors .
290+ Note that CLI switches take precedence over environment variables
291291
292- * ` DOTDROP_PROFILE ` : ` -p ` /` --profile `
292+ ` DOTDROP_PROFILE ` : ` -p ` /` --profile `
293293``` bash
294294export DOTDROP_PROFILE=" my-fancy-profile"
295295```
296- * ` DOTDROP_CONFIG ` : ` -c ` /` --cfg `
296+
297+ ` DOTDROP_CONFIG ` : ` -c ` /` --cfg `
297298``` bash
298299export DOTDROP_CONFIG=" /home/user/dotdrop/config.yaml"
299300```
300- * ` DOTDROP_NOBANNER ` : ` -b ` /` --no-banner `
301+
302+ ` DOTDROP_NOBANNER ` : ` -b ` /` --no-banner `
301303``` bash
302304export DOTDROP_NOBANNER=
303305```
304- * ` DOTDROP_DEBUG ` : ` -V ` /` --verbose `
306+
307+ ` DOTDROP_DEBUG ` : ` -V ` /` --verbose `
305308``` bash
306309export DOTDROP_DEBUG=
307310```
308- * ` DOTDROP_FORCE_NODEBUG ` : disable debug output even if ` -V ` /` --verbose ` is provided or ` DOTDROP_DEBUG ` is set
311+
312+ ` DOTDROP_FORCE_NODEBUG ` : disable debug output even if ` -V ` /` --verbose ` is provided or ` DOTDROP_DEBUG ` is set
309313``` bash
310314export DOTDROP_FORCE_NODEBUG=
311315```
312- * ` DOTDROP_TMPDIR ` : defines a temporary directory for dotdrop to use for its operations instead of using a system generated one
316+
317+ ` DOTDROP_TMPDIR ` : defines a temporary directory for dotdrop to use for its operations instead of using a system generated one
313318``` bash
314319export DOTDROP_TMPDIR=" /tmp/dotdrop-tmp"
315320```
316- * ` DOTDROP_WORKDIR ` : overwrite the ` workdir ` defined in the config
321+
322+ ` DOTDROP_WORKDIR ` : overwrite the ` workdir ` defined in the config
317323``` bash
318324export DOTDROP_WORKDIR=" /tmp/dotdrop-workdir"
319325```
320- * ` DOTDROP_WORKERS ` : overwrite the ` -w ` /` --workers ` cli argument
326+
327+ ` DOTDROP_WORKERS ` : overwrite the ` -w ` /` --workers ` cli argument
321328``` bash
322329export DOTDROP_WORKERS=" 10"
323330```
331+
332+ ` DOTDROP_MIME_TEXT ` : comma separated list of mime type to treat as text during templating
333+ ``` bash
334+ export DOTDROP_MIME_TEXT=application/x-wine-extension-ini
335+ ```
0 commit comments