void

- enter the void 🪐
git clone git://git.acid.vegas/archlinux.git
Log | Files | Refs | Archive

bash_fun (2467B)

      1 #!/bin/sh
      2 # .bash_fun - developed by acidvegas (https://git.acid.vegas/void)
      3 
      4 alias ansi='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart/ansi'
      5 alias ascii='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart'
      6 alias bomber='sh $HOME/.scripts/bomber'
      7 alias busy="cat /dev/urandom | hexdump -C | grep 'ca fe'"
      8 alias chess='chess-tui'
      9 alias cmatrix='cmatrix -ab -u 1 -C magenta -s'
     10 alias crypto="curl rate.sx"
     11 alias donut="curl ascii.live/donut"
     12 alias emoji"curl -sSL 'https://git.io/JXXO7' | fzf"
     13 alias fireworks='confetty fireworks'
     14 alias lavat='lavat -c magenta -s 10 -r 1 -R 1 -k cyan -b 20'
     15 alias mapscii='telnet mapscii.me'
     16 alias minesweeper='go-sweep'
     17 alias rmatrix='cmatrix -ab -u 1 -C red'
     18 alias pipes='sh $HOME/.scripts/pipes'
     19 alias pokemon='curl pkmn.li'
     20 alias starwars='telnet towel.blinkenlights.nl'
     21 alias wh='curl wttr.in'
     22 
     23 scene() {
     24 	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
     25 		curl -L -k -s http://www.textfiles.com/artscene/ansi/bbs/$x | iconv -f 437 -t utf-8 | pv -q -L 600
     26 	done
     27 }
     28 
     29 # Some of the commands below are from package installs or custom builds
     30 fun() {
     31 	echo "COMMAND       | DESCRIPTION"
     32 	echo "------------- | -----------"
     33 	echo "asciiquarium  | Terminal-based aquarium"
     34 	echo "ansi          | Play ANSI art in your terminal"
     35 	echo "ascii         | Play ASCII art in your terminal"
     36 	echo "bomber        | Bomberman in your terminal"
     37 	echo "busy          | Make your terminal busy"
     38 	echo "chess         | Play chess in your terminal"
     39 	echo "confetty      | Confetti in your terminal"
     40 	echo "cmatrix       | Matrix-style animation"
     41 	echo "crypto        | Show cryptocurrency rates"
     42 	echo "donut         | Spinning donut"
     43 	echo "dvd           | Bouncing DVD logo"
     44 	echo "fire          | Fire animation"
     45 	echo "fireworks     | Fireworks in your terminal"
     46 	echo "lavat         | Lava lamp style animation"
     47 	echo "mapscii       | Maps in your terminal"
     48 	echo "minesweeper   | Play minesweeper in your terminal"
     49 	echo "pipes         | Pipes in your terminal"
     50 	echo "pokemon       | Random Pokémon"
     51 	echo "scene         | Play ANSI scene art in your terminal"
     52 	echo "starwars      | Watch Star Wars in your terminal"
     53 	echo "tty-solitaire | Play solitaire in your terminal"
     54 	echo "wh            | Weather in your terminal"
     55 	echo "wipe          | Clear your terminal in style"
     56 }