Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 3 hours 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T18:00:06.000Z (almost 5 years ago)
- Last Synced: 2024-11-09T16:05:08.660Z (about 2 months 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.