This repo is about dotfiles to reinstall my PC efficiently.
This is made for Ubuntu Linux distribution but it can be also used on other Unix based systems. It's not garanteed to work the same.
This readme assumed you are familiar with basic linux command line usage.
Make sure you have the following installed before following the installation steps:
Git
Install git:
sudo apt -y install git
Make
Depending on the Linux distribution this may require to install make
To know if make
is installed:
make --version
If not, install it:
sudo apt install make
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 = your.name@knplabs.com
Magic install:
make install
This is an adaptation of lcouellan dotfiles project