#!/usr/bin/env bash set -eu if hash curl 2>/dev/null; then curl -fsSL https://github.com/ylogx/dotfiles/raw/HEAD/install.sh | bash elif hash wget 2>/dev/null; then wget https://github.com/ylogx/dotfiles/raw/HEAD/install.sh -O - | bash else printf "Neither curl nor wget is installed\n" fi exit 0 # High five! Everything worked.
This script will assist you in installing a very good set of dotfiles that will get you started on a new machine quickly.
To run, execute the following command in your terminal:
curl -sL shubham.chaudhary.xyz/dotfiles | bash
wget shubham.chaudhary.xyz/dotfiles -O - | bash
The script will install required dependencies and setup dotfiles.