# My Dot Files Get the submodules with ```sh git submodule update --init --recursive ``` Make the symlinks for the dotfiles with ```sh cd dotfiles stow -v2 --restow --dotfiles -t ~/ terminal stow -v2 --restow --dotfiles -t ~/ desktop-common stow -v2 --restow --dotfiles -t ~/ desktop-x11 stow -v2 --restow --dotfiles -t ~/ desktop-wayland ``` Now, system wide configs with ```sh sudo stow -v2 --restow -t / global-common sudo stow -v2 --restow -t / global-wayland ``` The links can be unstowed with ```sh stow -v2 --dotfiles -t /tmp/foo --delete desktop-common sudo stow -v2 --dotfiles -t / --delete global-common ```