Apply Command
The apply command combines link and install into a single operation, applying your complete configuration.
Coming Soon
This command is currently in development. Documentation will be updated when the feature is released.
Planned Usage
> dottie apply [options]
Planned Options
| Option | Short | Description |
|---|---|---|
--profile | -p | Profile to use (default: "default") |
--config | -c | Path to configuration file |
--dry-run | -d | Preview changes without applying |
--force | -f | Backup existing files and overwrite conflicts |
Planned Behavior
The apply command will:
- Validate the configuration
- Create all dotfile symlinks (like
link) - Install all software packages (like
install)
This is equivalent to running:
> dottie validate <profile>
> dottie link --profile <profile>
> dottie install --profile <profile>
Current Workaround
Until apply is available, run the individual commands:
> dottie validate default
> dottie link
> dottie install