Start explaining the yml commands
This commit is contained in:
parent
1d84ae7e14
commit
a4568d42e2
3 changed files with 33 additions and 3 deletions
32
README.md
32
README.md
|
@ -53,12 +53,42 @@ Never seems to remain empty...
|
|||
|
||||
|
||||
# YML commands
|
||||
The yml `configs.yml` file contains instructions as keys, which trigger commands.
|
||||
`configs.yml` contains instructions as keys, which trigger commands.
|
||||
Here is a brief explanation of the implemented commands:
|
||||
|
||||
* `clone`<br>
|
||||
Performs a `git clone`.
|
||||
|
||||
* `copy`<br>
|
||||
Copy a file.
|
||||
|
||||
* `download`<br>
|
||||
Download a file with a URL.
|
||||
|
||||
* `install`<br>
|
||||
Use the package manager to install a package.
|
||||
|
||||
* `include`<br>
|
||||
Include another config file (also yml).
|
||||
|
||||
* `run`<br>
|
||||
Pass a line of text to a subshell.
|
||||
|
||||
* `depend`<br>
|
||||
Install another part of the config file before.
|
||||
|
||||
* `symlink`<br>
|
||||
Make a symlink.
|
||||
|
||||
* `symlink_dir`<br>
|
||||
Make a symlink to a directory.
|
||||
|
||||
* `append`<br>
|
||||
Append text to the end of a file.
|
||||
|
||||
* `write`<br>
|
||||
Write text to a file, overwriting if it exists.
|
||||
|
||||
|
||||
# Thanks
|
||||
The idea for the architecture was taken from Dimitri Merejkowsky's [GitHub](https://github.com/dmerejkowsky/dotfiles).
|
||||
|
|
|
@ -364,7 +364,7 @@ vim:
|
|||
condition: update
|
||||
|
||||
neovim:
|
||||
- dependency:
|
||||
- depend:
|
||||
- vim
|
||||
- install:
|
||||
- neovim
|
||||
|
|
|
@ -269,7 +269,7 @@ class Installer:
|
|||
|
||||
self.base_dir.chdir()
|
||||
|
||||
def do_dependency(self, *programs: str) -> None:
|
||||
def do_depend(self, *programs: str) -> None:
|
||||
"""Process a program from the config file as a dependency of another program."""
|
||||
|
||||
for program in programs:
|
||||
|
|
Loading…
Add table
Reference in a new issue