https://github.com/dharfr/dotfiles
"Githubed" dotfiles seems to be a good idea. Let try this
https://github.com/dharfr/dotfiles
dotfiles macos shell
Last synced: about 2 months ago
JSON representation
"Githubed" dotfiles seems to be a good idea. Let try this
- Host: GitHub
- URL: https://github.com/dharfr/dotfiles
- Owner: dharFr
- Created: 2012-07-11T21:55:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T18:00:06.000Z (over 6 years ago)
- Last Synced: 2025-02-23T11:31:51.666Z (over 1 year ago)
- Topics: dotfiles, macos, shell
- Language: Shell
- Size: 2.9 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My own custom dotfiles
======================
"Githubed" dotfiles seems to be a good idea. Let try this...
If this looks interesting to you too, you probably want to read http://dotfiles.github.com/
The core logic (mainly `bootstrap.sh`) came from [mathiasbynens/dotfiles](https://github.com/mathiasbynens/dotfiles),
as well as the *Installation* doc bellow.
## Installation
### Using Git and the bootstrap script
You can clone the repository wherever you want. (I like to keep it in `~/Projects/dotfiles`, with `~/dotfiles` as a symlink.) The bootstrapper script will pull in the latest version and copy the files to your home folder.
```bash
git clone https://github.com/mathiasbynens/dotfiles.git && cd dotfiles && ./bootstrap.sh
```
To update, `cd` into your local `dotfiles` repository and then:
```bash
./bootstrap.sh
```
Alternatively, to update while avoiding the confirmation prompt:
```bash
./bootstrap.sh -f
```
### Git-free install
To install these dotfiles without Git:
```bash
cd; curl -#L https://github.com/mathiasbynens/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh}
```
To update later on, just run that command again.