Shell scripts
8ball.sh picks a text file, termin8ball runs a new Terminator window with a special config.
This commit is contained in:
parent
356b527f69
commit
1468b1dfe6
9
8ball.sh
Normal file
9
8ball.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/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;
|
3
termin8ball
Normal file
3
termin8ball
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
terminator --config ~/.config/terminator/8ballconf --profile=8 --geometry=515x515
|
Loading…
Reference in a new issue