Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.16 KB

README.md

File metadata and controls

63 lines (41 loc) · 1.16 KB

dotfiles

Installation macOS | Installation Pi/Ubuntu | Last configurations

My personal dotfiles for macOS and Pi (used as web server)

To configure my dotfiles, I use Stow.

Installation

macOS

Install iTerm2

git clone https://github.com/amamel/dotfiles.git .dotfiles && cd .dotfiles
./dotfiles.sh

Raspberry Pi / Ubuntu Server

Example with Raspberry Pi, but Ubuntu Server is similar except username is ubuntu (password ubuntu also)

Create new user and delete existing pi user

sudo adduser axm
sudo usermod -aG sudo axm
sudo su - axm
sudo pkill -u pi

SSH will disconnect... Then:

sudo deluser -remove-home pi

Clone dotfiles repo and run pi.sh

$ sudo apt update && sudo apt install -y git
$ git clone https://github.com/amamel/dotfiles.git .dotfiles && cd .dotfiles
$ ./pi.sh

Last configurations

Git

Create ~/.gitconfig.local file and add personal git infos

[user]
  name = your name
  email = your@email.com