~dricottone/image2ascii

ref: 5f404dd27f318973658c2b5cf1b8c48603b46086 image2ascii/vendor/github.com/wayneashleyberry/terminal-dimensions/readme.md -rw-r--r-- 983 bytes
5f404dd2 — 秦世成 Create .codacy.yml 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)
}