1468b1dfe6
8ball.sh picks a text file, termin8ball runs a new Terminator window with a special config.
10 lines
232 B
Bash
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;
|