https://github.com/bthuilot/dot
dotfiles
https://github.com/bthuilot/dot
dotfiles emacs macos zsh
Last synced: 3 months ago
JSON representation
dotfiles
- Host: GitHub
- URL: https://github.com/bthuilot/dot
- Owner: bthuilot
- License: gpl-3.0
- Created: 2017-02-13T19:55:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-12-12T03:09:26.000Z (7 months ago)
- Last Synced: 2025-12-13T10:11:11.307Z (7 months ago)
- Topics: dotfiles, emacs, macos, zsh
- Language: Shell
- Homepage:
- Size: 186 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# dot
install scripts and dotfiles for macOS and Linux (Arch)
## Installation
```shell
# OS should be either 'macos' or 'linux'
curl -L $OS.install.bryce.in | bash
# follow the prompts to complete installation
```
## Repository Structure
```
.
├── configs
│ ├── elisp
│ │ └── *.el # common elisp files
│ ├── zsh
│ │ └── *.zsh # common zsh files
│ ├── git
│ │ ├── global.gitignore # global gitignore file
│ │ └── *.gitconfig # gitconfig files
│ ├── links # files that need to be sysmtem linked to other location
│ └── * # other config files
│
├── templates # templates that are used to generate config files that are not tracked
│ # see README.txt in folder
└── scripts
├── install
│ ├── linux.sh # install script for linux
│ ├── macos.sh # install script for macos
│ └── *.sh # tool specific install script
└── pre-install
├── mac.sh # pre-install script for macos
└── linux.sh # pre-install script for linux
```