mirror of https://github.com/minio/minio.git
762b798767 | ||
---|---|---|
.. | ||
LICENCE | ||
README.md | ||
doc.go | ||
ts.go | ||
ts_darwin.go | ||
ts_linux.go | ||
ts_other.go | ||
ts_unix.go | ||
ts_windows.go | ||
ts_x.go |
README.md
ts (Terminal Size)
Simple go Application to get Terminal Size. So Many Implementations do not support windows but ts
has full windows support.
Run go get github.com/olekukonko/ts
to download and install
Example
package main
import (
"fmt"
"github.com/olekukonko/ts"
)
func main() {
size, _ := ts.GetSize()
fmt.Println(size.Col()) // Get Width
fmt.Println(size.Row()) // Get Height
fmt.Println(size.PosX()) // Get X position
fmt.Println(size.PosY()) // Get Y position
}