A Python implementation of the classic pipes.sh. Watch colorful pipes grow and spread across your terminal in mesmerizing patterns.
- Multiple pipe styles (10 different types)
- Customizable colors and animations
- Adjustable speed and steadiness
- Configuration saving
- Bold and color options
- Random start positions
# Install using pipx
pipx install pipes-py
# Clone the repository
git clone https://github.com/elliottophellia/pipes.py
# Change directory
cd pipes.py
# Build the package
poetry build
# Install the package
pipx install dist/pipes_py-1.0.0.tar.gz
pipes-py
-p, --pipes N
: Set number of pipes (default: 1)-f, --fps N
: Set frames per second (20-100, default: 75)-s, --steady N
: Set steadiness (5-15, default: 13)-r, --limit N
: Set character limit before reset-R, --random
: Enable random start positions-B, --no-bold
: Disable bold characters-C, --no-color
: Disable colors-P N, --pipe-style N
: Set pipe style (0-9)-K, --keep-style
: Keep pipe style when wrapping-S, --save-config
: Save current settings as default-v, --version
: Show version information
The program stores its configuration in ~/.config/pipes-py/config.json
. You can modify this file directly or use the -S
option to save your current settings.
Default configuration:
{
"pipes": 1,
"fps": 75,
"steady": 13,
"limit": 2000,
"random_start": false,
"bold": true,
"color": true,
"keep_style": false,
"colors": [1, 2, 3, 4, 5, 6, 7, 0],
"pipe_types": [0]
}
This project is licensed under the Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.0). For more information, please refer to the LICENSE file included in this repository.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request