#!/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. Dotfiles - ylogx

This script will assist you in installing a very good set of dotfiles that will get you started on a new machine quickly.

Execution

To run, execute the following command in your terminal:

Via curl

curl -sL shubham.chaudhary.xyz/dotfiles | bash

Via wget

wget shubham.chaudhary.xyz/dotfiles -O - | bash

The script will install required dependencies and setup dotfiles.