From 2e5d9536412ddbb8d1a2bc71efe84040857b30a3 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sat, 10 Feb 2024 00:47:04 +0100 Subject: config: change default appearance The default styleset and ui settings are quite dull and don't make use of the "newer" features that have been added to aerc in the past two years. Change the default styleset to something more colorful that renders correctly on both dark and light backgrounds. Change the default ui settings to get something more appealing to new users. Save the previous default color theme to a new `monochrome` styleset. Changelog-changed: The default `[ui]` settings and the `default` styleset have changed extensively. A no-color theme can be restored with the `monochrome` styleset. Cc: Marc Coquand Signed-off-by: Robin Jarry Tested-by: Nicolas Dichtel --- config/statusline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/statusline.go') diff --git a/config/statusline.go b/config/statusline.go index f00067db..964f3f54 100644 --- a/config/statusline.go +++ b/config/statusline.go @@ -32,7 +32,7 @@ func (s *StatuslineConfig) ParseColumns(sec *ini.Section, key *ini.Key) ([]*Colu _, _ = sec.NewKey("column-center", "{{.PendingKeys}}") } if !sec.HasKey("column-right") { - _, _ = sec.NewKey("column-right", "{{.TrayInfo}}") + _, _ = sec.NewKey("column-right", "{{.TrayInfo}} | {{cwd}}") } return ParseColumnDefs(key, sec) } -- cgit