~dricottone/image2ascii

ref: 0aea03805dfc4e6d8efcee5986556dded086de12 image2ascii/vendor/github.com/wayneashleyberry/terminal-dimensions/readme.md -rw-r--r-- 983 bytes
0aea0380 — qeesung Add vender 6 years ago

GoDoc Go Report Card Build Status Coverage Status

go get github.com/wayneashleyberry/terminal-dimensions
package main

import (
	"fmt"

	terminal "github.com/wayneashleyberry/terminal-dimensions"
)

func main() {
	x, _ := terminal.Width()
	y, _ := terminal.Height()
	fmt.Printf("Terminal is %d wide and %d high", x, y)
}