diff options
author | Robin Jarry <robin@jarry.cc> | 2022-09-30 14:12:07 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-10-01 15:47:25 +0200 |
commit | 45bff8851509432f6b5a21360ce67a7b2ca55eb5 (patch) | |
tree | 9290e56c3483a60b04d321837ac609c404a38768 /config/config.go | |
parent | 92ba132d70fe1d9afabe3cf4f23376025ccff897 (diff) | |
download | aerc-45bff8851509432f6b5a21360ce67a7b2ca55eb5.tar.gz |
open: allow overriding default program
Instead of xdg-open (or open on MacOS), allow forcing a program to open
a message part. The program is determined in that order of priority:
1) If :open has arguments, they will be used as command to open the
attachment. If the arguments contain the {} placeholder, the
temporary file will be substituted, otherwise the file path is added
at the end of the arguments.
2) If a command is specified in the [openers] section of aerc.conf for
the part MIME type, then it is used with the same rules of {}
substitution.
3) Finally, fallback to xdg-open/open with the file path as argument.
Update the docs and default config accordingly with examples.
Fixes: https://todo.sr.ht/~rjarry/aerc/64
Co-authored-by: Jason Stewart <support@eggplantsd.com>
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 24a1b507..e31d1a14 100644 --- a/config/config.go +++ b/config/config.go @@ -17,6 +17,7 @@ import ( "github.com/gdamore/tcell/v2" "github.com/go-ini/ini" + "github.com/google/shlex" "github.com/imdario/mergo" "github.com/kyoh86/xdg" "github.com/mitchellh/go-homedir" @@ -257,6 +258,7 @@ type AercConfig struct { ContextualUis []UIConfigContext General GeneralConfig Templates TemplateConfig + Openers map[string][]string } // Input: TimestampFormat @@ -484,6 +486,16 @@ func (config *AercConfig) LoadConfig(file *ini.File) error { config.Filters = append(config.Filters, filter) } } + if openers, err := file.GetSection("openers"); err == nil { + for mimeType, command := range openers.KeysHash() { + mimeType = strings.ToLower(mimeType) + if args, err := shlex.Split(command); err != nil { + return err + } else { + config.Openers[mimeType] = args + } + } + } if viewer, err := file.GetSection("viewer"); err == nil { if err := viewer.MapTo(&config.Viewer); err != nil { return err @@ -807,6 +819,8 @@ func LoadConfigFromFile(root *string, accts []string) (*AercConfig, error) { QuotedReply: "quoted_reply", Forwards: "forward_as_body", }, + + Openers: make(map[string][]string), } // These bindings are not configurable @@ -835,6 +849,7 @@ func LoadConfigFromFile(root *string, accts []string) (*AercConfig, error) { logging.Debugf("aerc.conf: [viewer] %#v", config.Viewer) logging.Debugf("aerc.conf: [compose] %#v", config.Compose) logging.Debugf("aerc.conf: [filters] %#v", config.Filters) + logging.Debugf("aerc.conf: [openers] %#v", config.Openers) logging.Debugf("aerc.conf: [triggers] %#v", config.Triggers) logging.Debugf("aerc.conf: [templates] %#v", config.Templates) |