An open API service indexing awesome lists of open source software.

https://github.com/psykulsk/tetri.sh

Simple tetris game in bash
https://github.com/psykulsk/tetri.sh

bash bash-game games shell shell-scripts terminal-game tetris

Last synced: about 6 hours ago
JSON representation

Simple tetris game in bash

Awesome Lists containing this project

README

          

# tetri.sh

Feeling your eyelids droop during that never-ending meeting? Or maybe you're ssh'ed into your server, bored out of your mind?

tetri.sh is here for you!

```
curl https://raw.githubusercontent.com/psykulsk/tetri.sh/main/tetri.sh -o tetri.sh && \
bash tetri.sh
```

```
usage: ./tetri.sh [-c cols ] [-r rows] [-l start level]
controls: left, right and down arrows for movement, z and x for rotation
-h display help
-c cols specify game area cols. Make sure it's not higher then the actual terminal's width.
-r rows specify game area rows. Make sure it's not higher then the actual terminal's height.
-l specify start level. Value from 1-10.
Exitting with Ctrl-C automatically cleans the screen.
```

Requires `bash --version` >= 4.0. **Warning**, MacOS is distributed with bash 3 by default. Check the [instructions](#upgrading-bash-on-macos) on how to upgrade it.

### Other bash games
* [shnake](https://github.com/psykulsk/shnake)
* [rubik.sh](https://github.com/psykulsk/rubik.sh)

### Demo
![](demo.gif)

### Upgrading bash on MacOS

* Install a new version of bash using brew: `brew install bash`
* Add `/opt/homebrew/bin/bash` to `/etc/shells`
* Set is as default with `chsh -s /usr/local/bin/bash`