Skip to main content

A tool for managing dotfiles for linux and macos.

Project description

Dotfiles CI

A dotfile manager to easily reuse configurations between linux and macOS.

Installation

pip install dotfile-manager

Usage

  • Make sure your dotfiles are organized as described below.

  • Installing the dotfiles: This will install all the necessary dependencies for your dotfiles.

    dotfile_manager install
    
  • Setting up the dotfiles: This will set up symbolic links for the config files, symlink binaries and create a script to source everything.

    dotfile_manager setup
    

Organize your dotfiles for use with the dotfile manager

The dotfiles are organised by project, where each project has its own top-level folder. A project has to contain a file dotfile_manager.yaml which configures the dotfile manager. It is setup as follows:

install_macos:
  - install_macos.sh

install_ubuntu:
  - install_ubuntu.sh

symlink:
  zshrc.zsh: ~/.zshrc

bin:
  - do_something.sh

source:
  - aliases.sh
  - helpers.sh

The entries of install_macos configure what scripts are used to install this project on macos. install_ubuntu does the same for ubuntu. Multiple scripts can be provided and they are executed in the order as specified in the yaml file.

The entries of symlink configures where the files will be symlinked to, the key is the path of the file inside the topic folder, the value is the global path where the file will be symlinked to.

The entries of bin will be symlinked to ${DOTFILES}/generated/bin/. Add this folder to your path to easily access these binaries.

The entries of source will be added to a script in ${DOTFILES}/generated/sources.zsh, such that you only have to source this file instead of sourcing all files individually.

Advanced

To work correctly the dotfile manager needs to know where the repo with all your dotfiles is stored. Thus you need to run the dotfile_manager [install|setup] command from the directory where your dotfiles are stored. If you want to be able to run the dotfile manager from anywhere there are two options:

  • Use a command line argument:
    dotfile_manager -d <path/to/dotfiles/> install
    
  • Use an environment variable:
    export DOTFILES=<path/to/dotfiles>
    dotfile_manager install
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dotfile_manager-0.2.0.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

dotfile_manager-0.2.0-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page