Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dikayx/.dotfiles
- Owner: dikayx
- Created: 2023-10-13T17:12:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-22T13:21:31.000Z (5 months ago)
- Last Synced: 2024-08-23T14:45:06.269Z (4 months ago)
- Topics: dotfiles, dotfiles-macos, macos
- Language: Shell
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```