diff options
author | Robin Jarry <robin@jarry.cc> | 2023-09-11 17:52:47 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-09-19 16:49:59 +0200 |
commit | 320aa2257f5b5f4ef516eccc3ab2bd49b79d0fdb (patch) | |
tree | 75a12e13e29f2c793ff2768408c596897defe914 /stylesets/pink | |
parent | d4e49c79a69c399702c3c781920c8eae5b9e22ba (diff) | |
download | aerc-320aa2257f5b5f4ef516eccc3ab2bd49b79d0fdb.tar.gz |
config: add default values for empty stylesets
When adding new style objects it is impossible to give them a default
color nor attributes without modifying each existing user styleset.
Also, if the user has an incomplete styleset, some parts of aerc will
have no style at all. These quirks are not nice from a user experience
point of view.
Before parsing the user styleset, initialize aerc style with basic
defaults. Reuse the exact same content than the actual "default"
styleset provided in /usr/share/aerc/stylesets. Comment all of the
default styleset to make it obvious that these are default values.
This has some implications:
* To reset these defaults, the user styleset must now start with these
two lines:
*.default = true
*.normal = true
If these two lines are not present, the default style will be kept and
only changed if the user styleset explicitly sets them.
* Empty stylesets no longer produce weird results.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'stylesets/pink')
-rw-r--r-- | stylesets/pink | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stylesets/pink b/stylesets/pink index 1f73d0f7..9fd8c213 100644 --- a/stylesets/pink +++ b/stylesets/pink @@ -1,6 +1,7 @@ # vim: ft=dosini -#de4e85 +*.default=true +*.normal=true border.bg=#de4e85 title.bg=#de4e85 |