~dricottone/image2ascii

ref: 52470578178123a6b4fb14f529b0179d8b426a3a image2ascii/vendor/github.com/wayneashleyberry/terminal-dimensions/readme.md -rw-r--r-- 983 bytes
52470578 — qeesung remove uesless example 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)
}