mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 23:21:03 +00:00
10 lines
178 B
Go
10 lines
178 B
Go
// +build windows
|
|
|
|
package gocui
|
|
|
|
import "github.com/jesseduffield/termbox-go"
|
|
|
|
func (g *Gui) getTermWindowSize() (int, int, error) {
|
|
x, y := termbox.Size()
|
|
return x, y, nil
|
|
}
|