terminal-dimensions icon indicating copy to clipboard operation
terminal-dimensions copied to clipboard

Terminal Dimensions is a simple Go package for finding your the width & height of your terminal

Go Go Reference Go Report Card

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

import (
	"fmt"

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

func main() {
	x, y, err := terminal.Dimensions()
	if err != nil {
		panic(err)
	}

	fmt.Printf("Terminal is %d wide and %d high", x, y)
}