mirror of https://github.com/status-im/go-waku.git
16 lines
274 B
Go
16 lines
274 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"golang.org/x/term"
|
||
|
)
|
||
|
|
||
|
func GetTerminalDimensions() (int, int) {
|
||
|
physicalWidth, physicalHeight, err := term.GetSize(int(os.Stdout.Fd()))
|
||
|
if err != nil {
|
||
|
panic("Could not determine terminal size")
|
||
|
}
|
||
|
return physicalWidth, physicalHeight
|
||
|
}
|