aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2022-09-23 13:49:22 +0100
committerdiogo464 <[email protected]>2022-09-23 13:49:22 +0100
commit4e3a3692a7276a2bde2034c30afe57b07b30e711 (patch)
tree28d5eab89d16dbdf459e6c21ce7e11a43a742997
parente5a38bab67f790803ff98484fc5835adba7bf62a (diff)
added basic readme
-rw-r--r--README.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d8bd824
--- /dev/null
+++ b/README.md
@@ -0,0 +1,34 @@
1# dotup
2
3CLI tool to symlink configuration files to into their correct place.
4
5Create a `dotup` file in the directory that contains all config files.
6```
7configs/
8 neovim/
9 ...
10 alacritty/
11 ...
12 dotup
13```
14
15Populate the config file
16```
17group desktop {
18 include group="neovim"
19 include group="alacritty"
20}
21
22group neovim {
23 link source="neovim/" target=".config/nvim"
24}
25
26group alacritty {
27 link source="alacritty/" target=".config/alacritty"
28}
29```
30
31Install the symlinks
32```bash
33dotup install desktop
34```