https://github.com/ikuwow/dotfiles
My dear dotfiles.
https://github.com/ikuwow/dotfiles
bash brew dotfiles
Last synced: about 1 year ago
JSON representation
My dear dotfiles.
- Host: GitHub
- URL: https://github.com/ikuwow/dotfiles
- Owner: ikuwow
- License: mit
- Created: 2014-04-14T14:05:48.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-04-02T03:09:46.000Z (about 1 year ago)
- Last Synced: 2025-04-15T06:15:49.765Z (about 1 year ago)
- Topics: bash, brew, dotfiles
- Language: Shell
- Homepage:
- Size: 752 KB
- Stars: 22
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles

My dear dotfiles.
## Set up your new Mac
* ☑️ Set language and reboot (System Preferences => Language and Region => Click plus button => ...)
* ☑️ Connect to internet
* ☑️ Sign in Apple ID (System Preferences => Click "Sign in" => ...)
* ☑️ Set password of login user (System Preferences => Users and Groups => ...)
* ☑️ Install Developer Tools: `xcode-select --install`
## Boostrapping
```
curl -L https://raw.githubusercontent.com/ikuwow/dotfiles/master/bootstrap.sh | bash -s
```
When you want to bootstrap specific branch:
```
curl -L https://raw.githubusercontent.com/ikuwow/dotfiles/master/bootstrap.sh | bash -s -- branchname
```
## Set login shell after bootstrapping
```
# Intel
LOGIN_SHELL="/usr/local/bin/bash"
sudo sh -c "echo $LOGIN_SHELL >> /etc/shells"
chsh -s "$LOGIN_SHELL"
```
```
# Apple Silicon
LOGIN_SHELL="/opt/homebrew/bin/bash"
sudo sh -c "echo $LOGIN_SHELL >> /etc/shells"
chsh -s "$LOGIN_SHELL"
```
## Notes
### Create key pair
```
ssh-keygen -t rsa -b 4096 -C "ikuwow@gmail.com"
```
Be sure to set passphrase.