Profile avatar

Chizi Victor

Software developer and unabashed nerd. Based in Port Harcourt, Nigeria. Building my own ideas, helping you launch yours.

Snippets

Jan 11, 2024

Stow .dotfiles

Backup dotfiles using gnu stow

Ensure stow is installed. Using apt, it can be installed with…

sudo apt install -y stow

Basic Workflow

# In the root dir of the .dotfiles repo
# to see changes before applying the symlinks, run
stow --adopt -nvt ~ *

Remove the -n flag to apply the symlinks

stow --adopt -vt ~ *

# To remove the symlinks, add the -D flag
stow --adopt -vDt ~ *

Optionally, you can increase verbose level to see more info about the process.

stow --adopt --verbose=2 -t ~ *