https://github.com/nomad-software/goat
GUI toolkit for the Go programming language based on Tcl/Tk
https://github.com/nomad-software/goat
Last synced: 9 months ago
JSON representation
GUI toolkit for the Go programming language based on Tcl/Tk
- Host: GitHub
- URL: https://github.com/nomad-software/goat
- Owner: nomad-software
- License: mit
- Created: 2023-10-18T10:08:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-10T16:33:36.000Z (over 2 years ago)
- Last Synced: 2025-06-06T08:41:03.564Z (about 1 year ago)
- Language: Go
- Size: 719 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Goat
GUI toolkit for the Go programming language based on Tcl/Tk.
## Overview
Goat is a fully cross-platform GUI toolkit based on
[Tcl/Tk](https://www.tcl.tk/about/). Goat allows you to build GUI applications easily
and with the knowledge of a consistent, native look and feel on every platform.
## Screenshots




_Compiled on Linux_
## Documentation
https://pkg.go.dev/github.com/nomad-software/goat
## Supported platforms
* Linux
* MacOS
### Windows
It would be quite trivial to support windows but I don't have access to a
Windows machine for development. Pull requests are welcome in this respect.
## Dependencies
### Install Tcl and Tk header files and libraries.
#### Linux
```bash
sudo apt install tcl-dev tk-dev
```
#### MacOS
```bash
brew install --cask xquartz
brew install tcl-tk
```
* https://formulae.brew.sh/cask/xquartz
* https://formulae.brew.sh/formula/tcl-tk
This is completely untested!
#### Windows
These would be provided by DLLs.
See https://github.com/nomad-software/tkd#windows-1
This is completely untested!