mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[provisioning] Add cool retro term
This commit is contained in:
parent
6c5eeafa15
commit
f15024724e
1 changed files with 15 additions and 0 deletions
15
recipes/cool-retro-term
Normal file
15
recipes/cool-retro-term
Normal 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
|
Loading…
Reference in a new issue