Skip to content

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

License

Notifications You must be signed in to change notification settings

wayneashleyberry/terminal-dimensions

Repository files navigation

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)
}

About

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

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages