Categorygithub.com/ilius/consolesize-go
repositorypackage
1.1.0
Repository: https://github.com/ilius/consolesize-go.git
Documentation: pkg.go.dev

# README

consolesize-go

Sponsor Me! GoDoc Go Report Card

consolesize-go is a library that will allow you to read the size of any console window on both Unix and Windows systems.

Install

$ go get github.com/nathan-fiscaletti/consolesize-go

Usage

package main

import (
    "fmt"

    "github.com/nathan-fiscaletti/consolesize-go"
)

func main() {
    cols, rows := consolesize.GetConsoleSize()
    fmt.Printf("Rows: %v, Cols: %v\n", rows, cols)
}