agoose77 / dotfiles

A collection of personal dotfiles
0 stars 0 forks source link

dotfiles

This repo contains my dotfiles (tada)!

Structure

There are two config.d-like directories used, so that different configurations can be loaded without merging:

The .zprofile file only sources .profile. This is because in an ideal world we'd only have .zprofile, but GDM only sources .profile explicitly:

Diagram of Bash startup sequence

So, to ensure that the system has access to useful paths, we define .profile.

GPG

  1. Install gnupg with sudo apt install gnupg
  2. Load subkeys into GPG
  3. Extract keygrip for signing key with gpg -K --with-keygrip
  4. Add keygrip to ~/.gnupg/sshcontrol
  5. Copy SSH key for GitHub from ssh-add -L

Setup

To install the dotfiles, clone this repo and cd

sudo apt install git git-lfs && git lfs install
git clone --recurse-submodules git@github.com:agoose77/dotfiles.git ~/.dotfiles
cd ~/.dotfiles

Then simply run the stow command

find * -type d -maxdepth 0  -exec stow --no-folding {} \;