2024-02-29 03:45:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# .bash_fun - developed by acidvegas (https://git.acid.vegas/void)
|
|
|
|
|
|
|
|
alias ansi='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart/ansi'
|
|
|
|
alias ascii='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart'
|
|
|
|
alias bomber='sh $HOME/.scripts/bomber'
|
|
|
|
alias busy="cat /dev/urandom | hexdump -C | grep 'ca fe'"
|
2024-10-22 03:34:13 +00:00
|
|
|
alias chess='chess-tui'
|
2024-02-29 03:45:58 +00:00
|
|
|
alias cmatrix='cmatrix -ab -u 1 -C magenta -s'
|
|
|
|
alias crypto="curl rate.sx"
|
|
|
|
alias donut="curl ascii.live/donut"
|
|
|
|
alias fireworks='confetty fireworks'
|
|
|
|
alias lavat='lavat -c magenta -s 10 -r 1 -R 1 -k cyan -b 20'
|
|
|
|
alias mapscii='telnet mapscii.me'
|
2024-07-10 00:50:57 +00:00
|
|
|
alias minesweeper='go-sweep'
|
2024-02-29 03:45:58 +00:00
|
|
|
alias rmatrix='cmatrix -ab -u 1 -C red'
|
|
|
|
alias pipes='sh $HOME/.scripts/pipes'
|
|
|
|
alias pokemon='curl pkmn.li'
|
|
|
|
alias starwars='telnet towel.blinkenlights.nl'
|
|
|
|
alias wh='curl wttr.in'
|
|
|
|
|
|
|
|
scene() {
|
|
|
|
for x in $(curl -L -k -s http://www.textfiles.com/artscene/ansi/bbs/ | tr ' ' '\n' | grep HREF | tr '"' ' ' | awk '{print $2}' | grep -P "(ans|vt)" | grep -v ".png" | grep "." | shuf); do
|
|
|
|
curl -L -k -s http://www.textfiles.com/artscene/ansi/bbs/$x | iconv -f 437 -t utf-8 | pv -q -L 600
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Some of the commands below are from package installs or custom builds
|
|
|
|
fun() {
|
|
|
|
echo "COMMAND | DESCRIPTION"
|
|
|
|
echo "------------- | -----------"
|
|
|
|
echo "asciiquarium | Terminal-based aquarium"
|
|
|
|
echo "ansi | Play ANSI art in your terminal"
|
|
|
|
echo "ascii | Play ASCII art in your terminal"
|
|
|
|
echo "bomber | Bomberman in your terminal"
|
|
|
|
echo "busy | Make your terminal busy"
|
2024-07-10 00:50:57 +00:00
|
|
|
echo "chess | Play chess in your terminal"
|
2024-02-29 03:45:58 +00:00
|
|
|
echo "confetty | Confetti in your terminal"
|
|
|
|
echo "cmatrix | Matrix-style animation"
|
|
|
|
echo "crypto | Show cryptocurrency rates"
|
|
|
|
echo "donut | Spinning donut"
|
|
|
|
echo "dvd | Bouncing DVD logo"
|
|
|
|
echo "fire | Fire animation"
|
|
|
|
echo "fireworks | Fireworks in your terminal"
|
|
|
|
echo "lavat | Lava lamp style animation"
|
|
|
|
echo "mapscii | Maps in your terminal"
|
2024-07-10 00:50:57 +00:00
|
|
|
echo "minesweeper | Play minesweeper in your terminal"
|
2024-02-29 03:45:58 +00:00
|
|
|
echo "pipes | Pipes in your terminal"
|
|
|
|
echo "pokemon | Random Pokémon"
|
|
|
|
echo "scene | Play ANSI scene art in your terminal"
|
|
|
|
echo "starwars | Watch Star Wars in your terminal"
|
|
|
|
echo "tty-solitaire | Play solitaire in your terminal"
|
|
|
|
echo "wh | Weather in your terminal"
|
|
|
|
echo "wipe | Clear your terminal in style"
|
|
|
|
}
|