aboutsummaryrefslogtreecommitdiffstats
path: root/commands/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/exec.go')
-rw-r--r--commands/exec.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/exec.go b/commands/exec.go
index e15afbe9..771c528e 100644
--- a/commands/exec.go
+++ b/commands/exec.go
@@ -3,6 +3,7 @@ package commands
import (
"errors"
"fmt"
+ "os"
"os/exec"
"time"
@@ -29,7 +30,22 @@ func (ExecCmd) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) < 2 {
return errors.New("Usage: exec [cmd...]")
}
+
cmd := exec.Command(args[1], args[2:]...)
+ env := os.Environ()
+
+ switch view := aerc.SelectedTab().(type) {
+ case *widgets.AccountView:
+ env = append(env, fmt.Sprintf("account=%s", view.AccountConfig().Name))
+ env = append(env, fmt.Sprintf("folder=%s", view.Directories().Selected()))
+ case *widgets.MessageViewer:
+ acct := view.SelectedAccount()
+ env = append(env, fmt.Sprintf("account=%s", acct.AccountConfig().Name))
+ env = append(env, fmt.Sprintf("folder=%s", acct.Directories().Selected()))
+ }
+
+ cmd.Env = env
+
go func() {
err := cmd.Run()
if err != nil {