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

https://github.com/samandmoore/dotfiles

my personal Linux/macOS config files
https://github.com/samandmoore/dotfiles

brewfile dotfiles tmux vimrc

Last synced: 3 months ago
JSON representation

my personal Linux/macOS config files

Awesome Lists containing this project

README

          

# dotfiles

To get started run

```bash
wget -qO- https://raw.githubusercontent.com/samandmoore/dotfiles/refs/heads/main/script/boot.sh | bash
```

From there, use `./script/setup.sh` to apply updates.

## Local customizations supported

- `~/.bashrc.local`
- `~/.gitconfig.local`
- `~/.tmux.conf.local`

## linux things

customizations are in `etc/linux`

## macOS things

customizations are in `etc/macos`

Change your computer name and network sharing name with this script if
you want.

```
export NEW_NAME="My-Cool-Mac"
scutil --set ComputerName "$NEW_NAME"
scutil --set LocalHostName "$NEW_NAME"
scutil --set HostName "$NEW_NAME"
unset NEW_NAME
```