2021-09-09 14:25:25 +02:00
|
|
|
//go:build !js
|
|
|
|
// +build !js
|
2020-07-31 20:57:48 +02:00
|
|
|
|
|
|
|
package terminal
|
|
|
|
|
|
|
|
import (
|
2020-10-06 17:34:26 +02:00
|
|
|
"fmt"
|
2020-07-31 20:57:48 +02:00
|
|
|
"os"
|
|
|
|
|
2022-03-30 23:13:53 +02:00
|
|
|
"golang.org/x/term"
|
2020-07-31 20:57:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetSize reads the dimensions of the current terminal or returns a
|
|
|
|
// sensible default
|
|
|
|
func GetSize() (w, h int) {
|
2022-03-30 23:13:53 +02:00
|
|
|
w, h, err := term.GetSize(int(os.Stdout.Fd()))
|
2020-07-31 20:57:48 +02:00
|
|
|
if err != nil {
|
|
|
|
w, h = 80, 25
|
|
|
|
}
|
|
|
|
return w, h
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsTerminal returns whether the fd passed in is a terminal or not
|
|
|
|
func IsTerminal(fd int) bool {
|
2022-03-30 23:13:53 +02:00
|
|
|
return term.IsTerminal(fd)
|
2020-07-31 20:57:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadPassword reads a line of input from a terminal without local echo. This
|
|
|
|
// is commonly used for inputting passwords and other sensitive data. The slice
|
|
|
|
// returned does not include the \n.
|
|
|
|
func ReadPassword(fd int) ([]byte, error) {
|
2022-03-30 23:13:53 +02:00
|
|
|
return term.ReadPassword(fd)
|
2020-07-31 20:57:48 +02:00
|
|
|
}
|
2020-10-06 17:34:26 +02:00
|
|
|
|
|
|
|
// WriteTerminalTitle writes a string to the terminal title
|
|
|
|
func WriteTerminalTitle(title string) {
|
|
|
|
fmt.Printf(ChangeTitle + title + BEL)
|
|
|
|
}
|