[ adding chr@, gm@ explicitly ]
On 27/07/2017 17:31, Tommaso Cucinotta wrote:
I think what we might do in a relatively easy and generic way, is to allow
for setting individual preferences settings from the command-line, e.g.:
alias lyx-safe='/usr/bin/lyx -Duse_converter_needauth_forbidden=true'
alias lyx-unsafe='/usr/bin/lyx -Duse_converter_needauth_forbidden=false
-Duse_converter_needauth=false'
that would override whatever one has in the ~/.lyx/preferences config.
we have an already existing way through the LYXRC_APPLY LFUN, with a relatively
heavy syntax:
This is lyx-safe:
./src/lyx -x 'lyxrc-apply Format 22
\use_converter_needauth_forbidden true'
This is lyx-unsafe:
./src/lyx -x 'lyxrc-apply Format 22
\use_converter_needauth_forbidden false
\use_converter_needauth false'
T.