From 8127a846e198c86ed2e925027b49238e58af163d Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 10 Jul 2020 14:46:15 +0700 Subject: [PATCH] Add ascii art to boot notification --- Vagrantfile | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 8790579..55d79b2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,3 +1,26 @@ +umbrelLogo = <<-TEXT + ,;###GGGGGGGGGGl#Sp + ,##GGGlW""^' '`""%GGGG#S, + ,#GGG" "lGG#o + #GGl^ '$GG# + ,#GGb \GGG, + lGG" "GGG + #GGGlGGGl##p,,p##lGGl##p,,p###ll##GGGG + !GGGlW"""*GGGGGGG#""""WlGGGGG#W""*WGGGGS + "" "^ '" "" + + + @GGS lG# + !GGG !GGG + !GGG !GGG + !GGG !GGG + !GGG !GGG + !GGG !GGG + 'GGG $GGl + "GGG#psqp##GG# + "%GGGGGG#" +TEXT + Vagrant.configure(2) do |config| config.vm.box = "debian/buster64" config.vm.hostname = "umbrel-dev" @@ -34,5 +57,5 @@ Vagrant.configure(2) do |config| SHELL # Message - config.vm.post_up_message = "Umbrel development environment ready: http://#{config.vm.hostname}.local" + config.vm.post_up_message = "#{umbrelLogo}\nUmbrel development environment ready: http://#{config.vm.hostname}.local" end