termin8ball/8ball.sh
kittenlikeasmallcat 1468b1dfe6
Shell scripts
8ball.sh picks a text file, termin8ball runs a new Terminator window with a special config.
2021-12-17 12:57:44 -08:00

10 lines
232 B
Bash

#!/bin/bash
#terminator --config ~/.config/terminator/8ballconf --profile=8 --geometry=515x515
EIGHTBALL=$( ls ~/.8ball/Answers/ | sort -R | tail -1 );
ANSWER=$( cat ~/.8ball/Answers/$EIGHTBALL );
echo -e $ANSWER | pv -qL 3000;