mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 03:00:11 +00:00
19 lines
376 B
Bash
19 lines
376 B
Bash
#!/bin/bash
|
|
# Description: Terminal emulator mimicing old cathode tube screens
|
|
set -e
|
|
|
|
case "$_PLATFORM" in
|
|
darwin)
|
|
_recipe brew
|
|
_brew_cask cool-retro-term
|
|
;;
|
|
arch)
|
|
_recipe _arch
|
|
_pacman cool-retro-term
|
|
;;
|
|
debian)
|
|
_recipe _apt
|
|
_ppa vantuz/cool-retro-term
|
|
_apt cool-retro-term
|
|
;;
|
|
esac
|