This repo is about dotfiles to reinstall my PC efficiently.
This is made for Ubuntu Linux distribution. It's not garanteed to work the same.
This readme assume you are familiar with basic linux command line usage.
wget -O - https://raw.githubusercontent.com/qroques/dotfiles/master/prerequisites/install.sh | bash
wget -O - https://raw.githubusercontent.com/qroques/dotfiles/master/prerequisites/install.sh | bash
This script will :
- Install
git
; - Install
make
; - Clone the repository into your home directory (as
dotfiles
) ; - Run the install process ;
If you already have git
and make
installed, you can clone the repository and run the install process manually.
On your fresh Ubuntu Linux installation:
Clone the repository:
git clone https://github.com/qroques/dotfiles ~/dotfiles
Or alternatively, fork the repository to make you own.
cd ~/dotfiles
Note If you are not @qroques, you may want to change the git configuration to your own. To do so, modify the file
./git/config
with something like:
[user]
name = Your Name
email = [email protected]
then, run the install process:
make install
This is an adaptation of lcouellan dotfiles project