blob: e1fa7270a3e1eda10764b40b271030f0a164a7eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
```
|