#!/bin/bash set -e export DEBIAN_FRONTEND=noninteractive if command -v apt &>/dev/null; then apt update -qq && apt install -y git openssh-client fish elif command -v pacman &>/dev/null; then pacman -Sy --noconfirm git openssh fish elif command -v brew &>/dev/null; then brew install git openssh fish fi git clone https://github.com/ivannance/dotfiles.git ~/dotfiles cd ~/dotfiles bash install.sh