From 18d9f143d40a20e3eed9b5c6f1c7472790123d7f Mon Sep 17 00:00:00 2001 From: junikimm717 Date: Fri, 15 Apr 2022 20:12:41 -0400 Subject: [PATCH] gnome arch --- archinstall/install.json | 2 +- gnome_arch.sh | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/archinstall/install.json b/archinstall/install.json index 728d1e0..ee16a64 100644 --- a/archinstall/install.json +++ b/archinstall/install.json @@ -29,7 +29,7 @@ "ntp": true, - "packages": ["docker", "git", "neovim", "ttf-jetbrains-mono"], + "packages": ["docker", "git", "neovim"], "profile": "minimal", diff --git a/gnome_arch.sh b/gnome_arch.sh index f768016..8037d61 100755 --- a/gnome_arch.sh +++ b/gnome_arch.sh @@ -92,6 +92,10 @@ plugins() { git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting" } +install_term() { + sudo pacman -S --noconfirm ttf-jetbrains-mono kitty +} + dotfiles() { echo "Adding vim and zsh configs" if ! test -d "$DIR/dotfiles"; then @@ -117,7 +121,7 @@ popshell() { } (usertest && bootstrap_paru && dev && sysinfo && shell && plugins && dotfiles && -popshell && browsers && meetings) || exit 1 +install_term && popshell && browsers && meetings) || exit 1 cat <