add build script

This commit is contained in:
meshya 2024-11-17 01:18:06 +03:30
commit e9bdeae0b7
7 changed files with 141 additions and 15 deletions

View file

@ -0,0 +1,8 @@
function fireworks() {
if ! command -v lolcat &>/dev/null || ! command -v pv &>/dev/null; then
echo "Install 'lolcat' and 'pv' to use this function: sudo pacman -S lolcat pv"
return 1
fi
echo "🎆🎇 BOOM! 🎆🎇" | pv -qL 10 | lolcat
}