[provisioning] Add cool retro term

This commit is contained in:
Correl Roush 2020-06-24 19:51:34 -04:00
parent 6c5eeafa15
commit f15024724e

15
recipes/cool-retro-term Normal file
View file

@ -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