2019-03-17 21:19:15 +01:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
|
2019-03-17 22:08:54 +01:00
|
|
|
"github.com/riywo/loginshell"
|
2020-04-23 03:56:28 +02:00
|
|
|
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-17 21:19:15 +01:00
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type Term struct{}
|
|
|
|
|
2019-03-17 21:19:15 +01:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(Term{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Term) Aliases() []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return []string{"terminal", "term"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Term) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-03-17 21:19:15 +01:00
|
|
|
}
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
// The help command is an alias for `term man` thus Term requires a simple func
|
|
|
|
func TermCore(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)
|
2019-03-17 21:19:15 +01:00
|
|
|
}
|
|
|
|
term, err := widgets.NewTerminal(exec.Command(args[1], args[2:]...))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-03-30 19:12:04 +01:00
|
|
|
tab := aerc.NewTab(term, 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-30 19:12:04 +01:00
|
|
|
aerc.RemoveTab(term)
|
2019-03-17 22:23:53 +01:00
|
|
|
if err != nil {
|
2020-05-28 16:32:42 +02:00
|
|
|
aerc.PushError(" " + err.Error())
|
2019-03-17 22:23:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 21:19:15 +01:00
|
|
|
return nil
|
|
|
|
}
|
2019-06-27 19:33:11 +02:00
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Term) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-06-27 19:33:11 +02:00
|
|
|
return TermCore(aerc, args)
|
|
|
|
}
|