mirror of
https://github.com/joeheyming/still_alive.git
synced 2025-12-09 21:56:58 +00:00
made paths relative
This commit is contained in:
21
aperture_logo.txt
Normal file
21
aperture_logo.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
.,-;;//;\=,.
|
||||
. 1H@@@MM@M#H/ ,+;,
|
||||
,/X+ +M@@M@MM% ,-%HMMM@X/,
|
||||
-+@MM; SM@@MH+- ;XMMMM@MMMM@+-
|
||||
,@M@@M- XM@X;. -+XXXXXHHH@M@M.--.
|
||||
,%MM@@MH ,@%= ..--=-=;=,.
|
||||
+@#@@@MX ., -%HXSS%%%+;
|
||||
=; .@M@M$ .;@MMMM@MM;
|
||||
X@= -#MM/ .+MM@@@M#;
|
||||
,@M@H; ;@1 . =X#@@@@
|
||||
,@@@MMX, . /H- ;@M@M=
|
||||
.H@@@@M@+, %MM+. %#$.
|
||||
/MMMM@MMH\. XM@MH; =;
|
||||
/%+%SXHH@#= , .H@@@@MX,
|
||||
.,,.,,..,,, -%H ,@@@@@MX,
|
||||
%MM@@@HHHXM++;;-- .;SMMX =M@@MM%.
|
||||
=XMCAMAMAGUEY ,-+HMM@M+ /MMMX=
|
||||
=%@M@M#@S .=#@MM@@@M; %M%=
|
||||
,;+#+- /H#MMMMMMM@= =,
|
||||
--. =++%%%%+/;-.
|
||||
|
||||
20
black_mesa_logo.txt
Normal file
20
black_mesa_logo.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
.-;+$XHHHHHHX$+;-.
|
||||
,;X@@X%/;=----=:/%X@@X/,
|
||||
=$@@%=. .=+H@X:
|
||||
-XMX: =XMX=
|
||||
/@@: =H@+
|
||||
%@X, .$@$
|
||||
+@X. $@%
|
||||
-@@, .@@=
|
||||
%@% +@$
|
||||
H@: :@H
|
||||
H@: =@H
|
||||
%@% ;@M@@@@@@@@@@@@@@@@@H- +@$
|
||||
=@@, :@@@@@@@@@@@@@@@@@@@@@= .@@:
|
||||
+@X :@@@@@@@@@@@@@@@M@@@@@@:%@%
|
||||
$@$, ;@@@@@@@@@@@@@@@@@M@@@@@@$.
|
||||
+@@HHHHHHH@@@@@@@@@@@@@@@@@@@@@@@+
|
||||
=X@@@@@@@@@@@@@@@@@@@@@@@@@@@@X=
|
||||
:$@@@@@@@@@@@@@@@@@@@M@@@@$:
|
||||
,;$@@@@@@@@@@@@@@@@@@X/-
|
||||
.-;+$XXHHHHHX$+;-.
|
||||
21
cake.txt
Normal file
21
cake.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
,:/+/-
|
||||
/M/ .,-=;//;-
|
||||
.:/= ;MH/, ,=/+%$XH@MM#@:
|
||||
-$##@+$###@H@MMM#######H:. -/H#
|
||||
.,H@H@ X######@ -H#####@+- -+H###@X
|
||||
.,@##H; +XM##M/, =%@###@X;-
|
||||
X%- :M##########$. .:%M###@%:
|
||||
M##H, +H@@@$/-. ,;$M###@%, -
|
||||
M####M=,,---,.-%%H####M$: ,+@##
|
||||
@##################@/. :%H##@$-
|
||||
M###############H, ;HM##M$=
|
||||
#################. .=$M##M$=
|
||||
################H..;XM##M$= .:+
|
||||
M###################@%= =+@MH%
|
||||
@################M/. =+H#X%=
|
||||
=+M##############M, -/X#X+;.
|
||||
.;XM##########H= ,/X#H+:,
|
||||
.=+HM######M+/+HM@+=.
|
||||
,:/%XM####H/.
|
||||
,.:=-.
|
||||
|
||||
20
heart.txt
Normal file
20
heart.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
.,---.
|
||||
,/XM#MMMX;,
|
||||
-%##########M%,
|
||||
-@######% $###@=
|
||||
.,--, -H#######$ $###M:
|
||||
,;$M###MMX; .;##########$;HM###X=
|
||||
,/@##########H= ;################+
|
||||
-+#############M/, %##############+
|
||||
%M###############= /##############:
|
||||
H################ .M#############;.
|
||||
@###############M ,@###########M:.
|
||||
X################, -$=X#######@:
|
||||
/@##################%- +######$-
|
||||
.;##################X .X#####+,
|
||||
.;H################/ -X####+.
|
||||
,;X##############, .MM/
|
||||
,:+$H@M#######M#$- .$$=
|
||||
.,-=;+$@###X: ;/=.
|
||||
.,/X$; .::,
|
||||
., ..
|
||||
@@ -26,12 +26,12 @@ do
|
||||
(say -v Vicki $line &);
|
||||
if [[ $line != '.' ]]
|
||||
then
|
||||
echo $line | grep 'Aperture Science' && show_file ~/aperture_logo.txt;
|
||||
echo $line | grep -i 'black mesa' && show_file ~/black_mesa_logo.txt;
|
||||
echo $line | grep -i 'cake' && show_file ~/cake.txt
|
||||
echo $line | grep -i 'heart' && show_file ~/heart.txt
|
||||
echo $line | grep 'Aperture Science' && show_file ./aperture_logo.txt;
|
||||
echo $line | grep -i 'black mesa' && show_file ./black_mesa_logo.txt;
|
||||
echo $line | grep -i 'cake' && show_file ./cake.txt
|
||||
echo $line | grep -i 'heart' && show_file ./heart.txt
|
||||
slow_type "$line";
|
||||
else
|
||||
sleep 1;
|
||||
fi;
|
||||
done < ~/still_alive.txt
|
||||
done < ./still_alive.txt
|
||||
|
||||
Reference in New Issue
Block a user