Skip to content

philipforget/dotfiles

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
vim
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

A collection of my config files. Tested (to various degrees) on OS X, Debian, Raspbian, and Ubuntu.

Installation

The installation init.sh script can be piped directly to bash, but you should probably inspect it before running random bash scripts from the internet:

# If you want your github public keys to be added, specify your username as the
# first argument
$YOUR_GITHUB_USERNAME=philipforget

# To use the main branch
curl -sfL init.chevalierforget.com | bash -s -- $YOUR_GITHUB_USERNAME

# Or to use a specific branch, eg `some-feature`
curl -sfL init.chevalierforget.com/some-feature | bash -s -- $YOUR_GITHUB_USERNAME

Try it out in a Docker container

Give this repo a try in a docker container using the Dockerfile:

# If you've already got the repo checked out, from the repo root:
docker build . -t dotfiles
docker run --rm -it -v "${PWD}:/home/dotfiles/workspace/dotfiles/:ro" dotfiles bash -c './init.sh; bash'
# Or to build the Docker image and run the init script from github directly:
curl -sfL https://raw.githubusercontent.com/philipforget/dotfiles/main/Dockerfile | \
  docker build -t dotfiles - && \
  docker run --rm -it -h dotfiles dotfiles  \
    bash -c 'curl -sfL init.chevalierforget.com | bash; bash'

You'll be dropped into a container after it finishes running init.sh for the dotfiles user.

About

My dotfiles and a simple python script to manage the symlinks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published