From 4993e401876d3f090114321bb004b30a0755bda4 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 8 Jun 2021 18:25:14 -0700 Subject: [PATCH] Add setup of kitty and alacritty --- master-cookbook | 10 +++++++++- recipes/default/kitty | 4 ++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 recipes/default/kitty diff --git a/master-cookbook b/master-cookbook index 71994d8..89811d1 100755 --- a/master-cookbook +++ b/master-cookbook @@ -47,6 +47,11 @@ if ! is_installed "salesforce" && prompt_yn "Install Salesforce tools?" ; then install_sfdc=true fi +install_ui_terms=false +if ! is_installed "ui_terms" && prompt_yn "Install UI terminals?" ; then + install_ui_terms=true +fi + ### Run recipes if $install_packages ; then recipe 'packages' @@ -62,7 +67,10 @@ fi recipe 'git' recipe 'vim-settings' recipe 'fish' -recipe 'alacritty' +if $install_ui_terms ; then + recipe 'alacritty' + recipe 'kitty' +fi git submodule init git submodule update diff --git a/recipes/default/kitty b/recipes/default/kitty new file mode 100755 index 0000000..7b30115 --- /dev/null +++ b/recipes/default/kitty @@ -0,0 +1,4 @@ +#! /bin/bash + +sudo_package_update +sudo_package "kitty"