From f15024724eaf2d7366694a43c0a87c35ba97d1cc Mon Sep 17 00:00:00 2001 From: Correl Date: Wed, 24 Jun 2020 19:51:34 -0400 Subject: [PATCH] [provisioning] Add cool retro term --- recipes/cool-retro-term | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 recipes/cool-retro-term diff --git a/recipes/cool-retro-term b/recipes/cool-retro-term new file mode 100644 index 0000000..b9051a6 --- /dev/null +++ b/recipes/cool-retro-term @@ -0,0 +1,15 @@ +#!/bin/bash +# Description: Terminal emulator mimicing old cathode tube screens +set -e + +case "$(uname -s)" in + Darwin) + _recipe brew + _brew_cask cool-retro-term + ;; + *) + _recipe _apt + _ppa vantuz/cool-retro-term + _apt cool-retro-term + ;; +esac