My personal dotfiles and the successor to my "home" repository
Go to file
Salt 779b8c6c9d Tweak CRT config 2021-01-23 21:04:35 -06:00
base Update systemd unit for dotfile fetching 2021-01-19 02:40:09 -06:00
contrib Tweak CRT config 2021-01-23 21:04:35 -06:00
desktop-common Move Firestarter into different config buckets as well 2021-01-19 02:36:49 -06:00
desktop-gruvbox Move Firestarter into different config buckets as well 2021-01-19 02:36:49 -06:00
git Add git config 2021-01-19 01:37:28 -06:00
mac/.config Move Mac configs over 2021-01-19 02:00:56 -06:00
ssh/.ssh Revert "Add backup configuration" 2021-01-19 01:56:33 -06:00
work/.config/qt5ct Add work dots 2021-01-19 03:17:45 -06:00
.gitignore Add .gitignore 2021-01-19 01:12:47 -06:00
.gitmodules Move Firestarter into different config buckets as well 2021-01-19 02:36:49 -06:00
README.md Add cool retro term config 2021-01-23 20:59:38 -06:00
deploy-all.sh Add a deploy-all script 2021-01-19 02:19:05 -06:00
submodule-checkout-masters-and-update.sh Add a script for updating submodules, make README nicer 2021-01-19 02:16:17 -06:00

README.md

Salt's Dotfiles

GNU Stow Edition

Installation

Clone the repository and stow in configs that you want, like so:

cd
git clone git@git.desu.ltd:salt/dotfiles --recurse-submodules .dotfiles
cd .dotfiles
stow base # Or whatever config set you want

I would highly recommend using this repository only as a reference and building your own dotfile solution from scratch.

However, I would also highly recommend using this stow-based approach instead of putting a bare repo in your home directory. Been there, done that. It sucks, especially if you're the type to diverge configs between machines or just want a subset installed.

Overview

This stash contains a number of packages for numerous situations. Note that contrib is NOT a package:

package description
base The base package contains shell and core utility configuration. Other packages do not depend on it; it merely contains basic configuration that I find necessary in every case.
desktop-common Common configuration shared across all possible rices. This contains things such as keybindings for applications, Quake configs, Redshift, etc. Configuration files with themes are avoided where possible.
desktop-gruvbox My current rice and its accompanying configs. A nice and simple one with Rofi, bspwm, Dunst, Compton, and Polybar.
work Dots specific to my work user setup.
git My personal git configuration. Separated from base because sometimes I don't want cockmail on all my commits.
mac MacOS-specific configs. Very sparse; I hardly ever have to use one.
ssh SSH configuration for my desktop machines.

Included within are also a handful of management scripts.

script description
deploy-all.sh Deploys all packages. Note that I reserve the right to produce packages with conflicting contents, so in the future this may be refined to only deploy a specific subset of packages (base, desktop-common, etc.).
submodule-checkout-masters-and-update.sh For every submodule in the repo, checks out its master branch (instead of the exact commit specified in the base repo) and then pulls from upstream. Effectively, this updates any submodules in the repo, such as Vim plugins, themes, etc.