about summary refs log blame commit diff stats
path: root/commands/term.go
blob: d122e78a125436e9f9fcd84022d10f2ad9bc3c8b (plain) (tree)
1
2
3
4
5
6
7
8
9


                
                 
              
 
                                           
 
                                  
                                     


             
                              


                                                    





                                                




                                                                            

                                                        

                                           
                                       



                                        
                                        
                                    




                                                                         

                  
package commands

import (
	"os/exec"
	"time"

	"git.sr.ht/~sircmpwn/aerc2/widgets"

	"github.com/gdamore/tcell"
	"github.com/riywo/loginshell"
)

func init() {
	register("term", Term)
}

func Term(aerc *widgets.Aerc, args []string) error {
	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
	}
	host := widgets.NewTermHost(term, aerc.Config())
	tab := aerc.NewTab(host, args[1])
	term.OnTitle = func(title string) {
		if title == "" {
			title = args[1]
		}
		tab.Name = title
		tab.Content.Invalidate()
	}
	term.OnClose = func(err error) {
		aerc.RemoveTab(host)
		if err != nil {
			aerc.PushStatus(" "+err.Error(), 10*time.Second).
				Color(tcell.ColorRed, tcell.ColorWhite)
		}
	}
	return nil
}