https://github.com/simonwhitaker/shellsnake
Play Snake on the command line! 😄🐛🐛🐛
https://github.com/simonwhitaker/shellsnake
bubbletea cli game golang snake
Last synced: 4 months ago
JSON representation
Play Snake on the command line! 😄🐛🐛🐛
- Host: GitHub
- URL: https://github.com/simonwhitaker/shellsnake
- Owner: simonwhitaker
- License: unlicense
- Created: 2022-08-06T16:37:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-14T08:45:34.000Z (6 months ago)
- Last Synced: 2026-01-15T05:18:43.849Z (5 months ago)
- Topics: bubbletea, cli, game, golang, snake
- Language: Go
- Homepage:
- Size: 199 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shellsnake
Play snake in your shell!

# To play
## Install with Homebrew
```sh
brew install simonwhitaker/tap/shellsnake
```
## Install the binary using the Go toolchain
If you have the Go toolchain installed, you can:
```sh
go install github.com/simonwhitaker/shellsnake@latest
```
## Download a release
Check the [releases page](https://github.com/simonwhitaker/shellsnake/releases). Download, open the gz/zip file, and run `shellsnake`.
## Run from source
Clone this repo, then:
```sh
go run .
```
Then (assuming `$(go env GOPATH)/bin` is in your path):
```sh
shellsnake
```
# Running with Docker
```sh
docker build -t shellsnake .
docker run --rm -it shellsnake:latest
```