summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2022-02-19 14:06:57 +0100
committerRobin Jarry <robin@jarry.cc>2022-02-19 15:24:55 +0100
commitbb0f1801402e98266d2554a5f002dc8ce0419808 (patch)
treef1100f9abb31293895b58ce7522ebe73e5262073 /doc
parent05ad96a30cb8ea17970c84ea7c72f8f3def5afa5 (diff)
downloadaerc-bb0f1801402e98266d2554a5f002dc8ce0419808.zip
config: do not hardcode sharedir
Instead of using a static SHAREDIR at compile time, use a list of standard paths to use at runtime for templates, config files and stylesets. This implies removing all default filters in the default configuration. Replace them with basic commands. New users can configure the filters as they wish. Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'doc')
-rw-r--r--doc/aerc-config.5.scd28
1 files changed, 22 insertions, 6 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd
index ce53f9b..1992b59 100644
--- a/doc/aerc-config.5.scd
+++ b/doc/aerc-config.5.scd
@@ -208,10 +208,18 @@ These options are configured in the *[ui]* section of aerc.conf.
Default: spaces
*stylesets-dirs*
- The directories where the stylesets are stored. The config takes a
- colon-separated list of dirs.
+ The directories where the stylesets are stored. The config takes
+ a colon-separated list of dirs. If this is unset or if a styleset cannot
+ be found, the following paths will be used as a fallback in that order:
- Default: "/usr/share/aerc/stylesets"
+ ```
+ ~/.config/aerc/stylesets
+ ~/.local/share/aerc/stylesets
+ /usr/local/share/aerc/stylesets
+ /usr/share/aerc/stylesets
+ ```
+
+ Default: ""
*styleset-name*
The name of the styleset to be used to style the ui elements. The
@@ -398,10 +406,18 @@ _/usr/share/aerc/templates_).
These options are configured in the *[templates]* section of aerc.conf.
*template-dirs*
- The directory where the templates are stored. The config takes a
- colon-separated list of dirs.
+ The directory where the templates are stored. The config takes
+ a colon-separated list of dirs. If this is unset or if a template cannot
+ be found, the following paths will be used as a fallback in that order:
- Default: "/usr/share/aerc/templates"
+ ```
+ ~/.config/aerc/templates
+ ~/.local/share/aerc/templates
+ /usr/local/share/aerc/templates
+ /usr/share/aerc/templates
+ ```
+
+ Default: ""
*new-message*
The default template to be used for new messages.