mirror of
https://github.com/miguelmota/cointop
synced 2024-11-14 18:12:57 +00:00
9a906c3a68
Lots of new functionality including: - mouse support: click select, scroll, menus, table-sorting, etc - 24-bit color support in themes Co-authored-by: Simon Roberts <simon.roberts@anz.com> Co-authored-by: ѵµσɳɠ <3168632+vuon9@users.noreply.github.com>
11 lines
281 B
Go
11 lines
281 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package term
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
const ioctlWriteTermios = unix.TCSETS
|