My collection of minimal and useful Bash scripts (not always useful tbh), organized by category.
Each tool is contained in its own subdirectory and may be independently installed or used.
This repository follows a modular layout:
bash-projects/
βββ rice_linux/
β βββ matrixr/ # Matrix rain effect with color config
β βββ programstrp/ # Devilspie-based window opacity manager
βββ README.md
Each directory under a category (like rice_linux) represents a standalone script/tool, complete with its own code and README (if applicable).
Matrix rain terminal animation with configurable colors.
Lightweight Bash implementation with no dependencies.
- Configurable color themes
- Persistent user config in
~/.cache/matrixr - Simple CLI interface:
--color,--reset,--help
X11 window opacity manager using Devilspie 1.
Allows global or per-app opacity control, restartable with a single command.
- Uses
devilspie -ato apply transparency rules - Creates and manages
.dsfiles under~/.devilspie/ - Simple command-line interface:
--apply,--set,--restart,--for
You can install individual tools either by cloning this repo or downloading from GitHub raw.
git clone https://github.com/tsukum0/bash-projects.git
cd bash-projects/rice_linux/<toolname>
sudo bash <toolname>_install.shcurl -L https://raw.githubusercontent.com/tsukum0/bash-projects/main/rice_linux/<toolname>/<toolname>.sh -o <toolname>.sh
sudo bash <toolname>_install.shReplace <toolname> with matrixr or programstrp.
MIT License Β© tsukum0