summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e1fa727
--- /dev/null
+++ b/README.md
@@ -0,0 +1,30 @@
+# 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
+```