Add Qt module note to INSTALL
[nomnom.git] / README.packagers
blob59be41dc0b8cff8399b9f9dad758b8f12972a77d
2 PACKAGERS
3 =========
5 Prerequisites
6 -------------
8 Make sure you read the INSTALL file for the application prerequisites.
11 System wide configuration file
12 ------------------------------
14 You can distribute 0.2 without a system wide configuration file.
16 NomNom was, until 0.2, a tedious application to configure -- which is
17 why installing a system wide config file with predefined values was
18 previously a recommended step.
20 You may still do this, if you like. Refer to the Qt documentation
21 (look up QSettings) for the typical search paths, e.g. on Unix-like
22 systems:
24   /etc/xdg/NomNom/NomNom.conf
25   /etc/xdg/NomNom.conf
26   /etc/NomNom.conf
28 Keep in mind, however, that the "system wide config values" are nothing
29 more than recommendations as the users may override them (in settings) at
30 anytime.
32 Example (/etc/NomNom.conf):
34   [Settings]
35   ParseUsing=other:
36   ParseUsingOther=/foo/bar^-f -b %u
38 Make a note of the use of "other". This would make "/foo/bar" to be
39 used as the default value for "Parse using" command. The command line
40 arguments follow after the "^".
42 Full list of the supported variables, can be found in:
44   $top_srcdir/src/settings/nsettings.cpp
46 Or take a look at your local user config. Run "nomnom --config-path"
47 to find the path to it.