Home
Softono

Go Vte

Open source MIT Go
15
Stars
2
Forks
0
Issues
2
Watchers
8 years
Last Commit

 About Go Vte

This is a binding for libvte

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Go Vte?

We provide expert installation service for this software. Our team will install, configure, and secure Go Vte on your server. plans start at just $30.

go-vte

This is a binding for libvte

The binding acts as an extension to github.com/gotk3/gotk3/gtk

Example

term, err := vte.TerminalNew()
if err != nil {
	log.Fatal("Unable to create terminal:", err)
}
wd, _ := os.Getwd()
term.SpawnAsyncSimple(wd, []string{"/bin/bash"}, []string{"TERM=xterm"})