https://github.com/dotzero/dotfiles
:octocat: macOS environment: zsh, Oh My Zsh, Git, etc.
https://github.com/dotzero/dotfiles
dotfiles iterm macos unix zsh
Last synced: 5 months ago
JSON representation
:octocat: macOS environment: zsh, Oh My Zsh, Git, etc.
- Host: GitHub
- URL: https://github.com/dotzero/dotfiles
- Owner: dotzero
- Created: 2017-03-04T07:31:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-05T05:51:54.000Z (6 months ago)
- Last Synced: 2025-05-06T22:07:38.114Z (5 months ago)
- Topics: dotfiles, iterm, macos, unix, zsh
- Language: Shell
- Homepage: https://dotzero.blog
- Size: 839 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotzero dotfiles
### Set computer name
```bash
sudo scutil --set ComputerName "0x6D746873"
sudo scutil --set HostName "0x6D746873"
sudo scutil --set LocalHostName "0x6D746873"
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "0x6D746873"
```### Generating a new SSH key
```bash
ssh-keygen -t ed25519 -C "your_email@example.com"
nano ~/.ssh/config
```Add the following lines:
```
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519
```### Install dotfiles
```bash
git clone git@github.com:dotzero/dotfiles.git ~/.0
```### Bootstrap dotfiles
```bash
~/.0/bootstrap
~/.0/macos
```### Update
```bash
selfupdate
```