Add setup of kitty and alacritty

This commit is contained in:
ViViDboarder 2021-06-08 18:25:14 -07:00
parent 61d304f067
commit 4993e40187
2 changed files with 13 additions and 1 deletions

View File

@ -47,6 +47,11 @@ if ! is_installed "salesforce" && prompt_yn "Install Salesforce tools?" ; then
install_sfdc=true install_sfdc=true
fi fi
install_ui_terms=false
if ! is_installed "ui_terms" && prompt_yn "Install UI terminals?" ; then
install_ui_terms=true
fi
### Run recipes ### Run recipes
if $install_packages ; then if $install_packages ; then
recipe 'packages' recipe 'packages'
@ -62,7 +67,10 @@ fi
recipe 'git' recipe 'git'
recipe 'vim-settings' recipe 'vim-settings'
recipe 'fish' recipe 'fish'
recipe 'alacritty' if $install_ui_terms ; then
recipe 'alacritty'
recipe 'kitty'
fi
git submodule init git submodule init
git submodule update git submodule update

4
recipes/default/kitty Executable file
View File

@ -0,0 +1,4 @@
#! /bin/bash
sudo_package_update
sudo_package "kitty"