1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
package gowid
import (
"os"
tcell "github.com/gdamore/tcell/v2"
)
func tcellScreen(ttys string) (tcell.Screen, error) {
var tty tcell.Tty
var err error
tty, err = tcell.NewDevTtyFromDev(bestTty(ttys))
if err != nil {
return nil, WithKVs(err, map[string]interface{}{"tty": ttys})
}
return tcell.NewTerminfoScreenFromTty(tty)
}
func bestTty(tty string) string {
if tty != "" {
return tty
}
gwtty := os.Getenv("GOWID_TTY")
if gwtty != "" {
return gwtty
}
return "/dev/tty"
}
|