aerc/commands/term.go

47 lines
876 B
Go
Raw Normal View History

package commands
import (
"os/exec"
2019-03-17 22:23:53 +01:00
"time"
"git.sr.ht/~sircmpwn/aerc2/widgets"
2019-03-17 22:08:54 +01:00
2019-03-17 22:23:53 +01:00
"github.com/gdamore/tcell"
2019-03-17 22:08:54 +01:00
"github.com/riywo/loginshell"
)
func init() {
2019-03-21 21:30:23 +01:00
register("term", Term)
}
func Term(aerc *widgets.Aerc, args []string) error {
2019-03-17 22:08:54 +01:00
if len(args) == 1 {
shell, err := loginshell.Shell()
if err != nil {
return err
}
args = append(args, shell)
}
term, err := widgets.NewTerminal(exec.Command(args[1], args[2:]...))
if err != nil {
return err
}
2019-03-17 22:39:22 +01:00
host := widgets.NewTermHost(term, aerc.Config())
tab := aerc.NewTab(host, args[1])
2019-03-17 22:08:54 +01:00
term.OnTitle = func(title string) {
if title == "" {
2019-03-17 22:23:53 +01:00
title = args[1]
2019-03-17 22:08:54 +01:00
}
tab.Name = title
tab.Content.Invalidate()
}
2019-03-17 22:23:53 +01:00
term.OnClose = func(err error) {
2019-03-17 22:39:22 +01:00
aerc.RemoveTab(host)
2019-03-17 22:23:53 +01:00
if err != nil {
aerc.PushStatus(" "+err.Error(), 10*time.Second).
2019-03-30 18:05:00 +01:00
Color(tcell.ColorDefault, tcell.ColorRed)
2019-03-17 22:23:53 +01:00
}
}
return nil
}