Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikuwow/dotfiles
My dear dotfiles.
https://github.com/ikuwow/dotfiles
bash brew dotfiles
Last synced: 6 days 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-13T02:37:56.000Z (26 days ago)
- Last Synced: 2024-10-25T04:21:51.780Z (14 days ago)
- Topics: bash, brew, dotfiles
- Language: Shell
- Homepage:
- Size: 700 KB
- Stars: 22
- Watchers: 4
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
![CI](https://github.com/ikuwow/dotfiles/actions/workflows/ci.yml/badge.svg)
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 "[email protected]"
```Be sure to set passphrase.