mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-24 19:19:52 +00:00
16 lines
297 B
Text
16 lines
297 B
Text
|
#!/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
|