mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 07:20:00 +00:00
16 lines
235 B
Go
16 lines
235 B
Go
|
// +build !windows,!plan9,!appengine,!wasm
|
||
|
|
||
|
package flags
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
func getTerminalColumns() int {
|
||
|
ws, err := unix.IoctlGetWinsize(0, unix.TIOCGWINSZ)
|
||
|
if err != nil {
|
||
|
return 80
|
||
|
}
|
||
|
return int(ws.Col)
|
||
|
}
|