Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dikayx/.dotfiles

Some of my Mac settings & configs.
https://github.com/dikayx/.dotfiles

dotfiles dotfiles-macos macos

Last synced: about 2 months ago
JSON representation

Some of my Mac settings & configs.

Awesome Lists containing this project

README

        

# 🏡 Feel like home on any mac

## Get started

- Install Xcode commandline tools -> `xcode-select --install`
- Install [Homebrew](https://brew.sh/) -> `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
- Clone this repo -> `git clone https://github.com/dikayx/.dotfiles.git`
- Make the scripts executable -> `chmod +x .dotfiles/*.sh`
- Run `./.dotfiles/install.sh `

_The `hostname` is required, the `gitname` and `gitemail` are optional._

Example: `./install.sh "MyMacBookPro" "John Doe" "[email protected]"`

## One-click-setup

```bash
xcode-select --install \
&& /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" \
&& git clone https://github.com/dikayx/.dotfiles.git \
&& chmod +x .dotfiles/*.sh \
&& ./.dotfiles/install.sh "My-MBP"
```