# Basics & system settings
## Syntax
Here is a basic example of a cutler configuration file:
```toml
# ~/.config/cutler/config.toml
[set.dock]
tilesize = 46
[set.menuextra.clock]
FlashDateSeparators = true
```
macOS heavily relies on preference files (in `.plist` format) stored in certain ways to save the state of your Mac's apps and settings. cutler takes advantage of this mechanism to automatically put your desired system settings in place by following the config file you wrote. It's a "declarative" way to set your settings without even touching the app itself.
This will do the following:
1. Set your **Dock's tilesize** to **46**.
2. Enable **flashing date separators** for the clock of your **menu bar**.
If you were to do the same with a terminal, you would use these commands:
```sh
$ defaults write com.apple.dock "tilesize" -int "46"
$ defaults write com.apple.menuextra.clock "FlashDateSeparators" -bool true
```
## Global preferences
You can also configure global preferences like this:
```toml
# ~/.config/cutler/config.toml
[set.NSGlobalDomain]
InitialKeyRepeat = 15
ApplePressAndHoldEnabled = true
"com.apple.mouse.linear" = true
# or, for the third entry, alternate structure:
#
# [set.NSGlobalDomain.com.apple.mouse]
# linear = true
```
Again, if you were to use `defaults`, it would look something like this:
```sh
$ defaults write NSGlobalDomain "ApplePressAndHoldEnabled" -bool true
$ defaults write NSGlobalDomain com.apple.mouse.linear -bool true
```
## Applying & undoing
Once you're ready, run this command to apply everything:
```sh
cutler apply
```
The `apply` command has multiple functionalities which happen alongside of applying the preferences. You may execute `cutler apply -h` or append the `--help` flag to see all the different options, or just read the cookbook.
> **TIP:** This command may have multiple interactions with other commands (e.g. `cutler apply --brew` for also installing Homebrew apps/tools later on in the book), so it is suggested to read all references before using in order to fully utilize the structure.
To compare your system with your configuration and see what needs to be done, run:
```sh
cutler status
```
Unapplying everything is also as easy. Run the command below and cutler will restore your preferences to the exact previous state:
```sh
cutler unapply
```
## Action hints
The fun part about using cutler is, it will mostly tell you to take certain actions based on what command you are using, without you having to think about it. This is due to cutler's immense synchronization between commands.
Say, for example, if my dock should automatically hide based on cutler's configuration, and if it does not right now, cutler will show this when running `cutler status`:
```sh
$ cutler status
WARN com.apple.dock
WARN autohide: should be true (now: false)
WARN Preferences diverged. Run `cutler apply` to apply the config onto the system.
🍎 Homebrew status on sync.
$
```
As you can see, it suggests me to run `cutler apply`. Running the suggested command will only affect the changed portion of the preferences, and cutler will skip the rest.
## Risky operations
If you would like to write non-existent domains (create them) using cutler, use the `--no-dom-check` flag:
```sh
cutler apply --no-dom-check
```
This will disable the "Domain does not exist" error which happens when cutler's backend does not recognize a domain.