My dotfiles
Handled with Stow
Example:
cd ~/dotfiles/common
# Create a script file
touch scripts/bash/test.sh
# Dry-run
stow -n -v -t ~ shell-scripts
# Create the symbolic links at the right place (~/scripts/bash)
stow -v -t ~ shell-scriptscd ~/dotfiles/common
# Dry-run
stow -n -v -t ~ *
# Create the common symbolic links at the right place
stow -v -t ~ *cd ~/dotfiles/linux
# Dry-run
stow -n -v -t ~ *
# Create the linux symbolic links at the right place
stow -v -t ~ *cd ~/dotfiles/mac
# Dry-run
stow -n -v -t ~ *
# Create the mac symbolic links at the right place
stow -v -t ~ *