dotfiles/recipes/cool-retro-term

15 lines
297 B
Bash

#!/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