macos-defaults/build/docsify/templates/page.md.handlebars
2020-09-20 11:18:39 +02:00

50 lines
1.3 KiB
Handlebars
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# {{ title }}
> {{{ description }}}
- **Tested on macOS**:
{{# versions }}
* {{ . }}
{{/ versions }}
- **Parameter type**: {{ param.type }}
{{# param.values }}
* {{ . }}
{{/ param.values }}
{{# if requirements }}
## Requirements
{{# requirements }}
- [`{{ name }}`]({{ folder }}/{{ key }}?id=set-to-{{ value }}) must be set to `{{ value }}`
{{/ requirements }}
{{/ if }}
{{# examples }}
## Set to `{{{ value }}}`{{# if default }} (default value){{/ if }}
```bash
defaults write {{ ../domain }} {{ ../key }} -{{ ../param.type }} {{{ value }}}{{# if ../after }} && {{ ../after }}{{/ if }}
```
{{# video }}
<video autoplay loop muted playsinline width="{{ width }}" height="{{ height }}" style="max-width: 100%; height: auto">
<source src="/{{ ../../folder }}-{{ ../../key }}-{{ filename }}" type="video/mp4">
Example output with value set to {{{ ../value }}}
</video>
{{/ video }}
{{# image }}
<img src="/{{ ../../folder }}-{{ ../../key }}-{{ filename }}" alt="Example output with value set to {{{ ../value }}}"
width="{{ width }}" height="{{ height }}" style="height: auto" />
{{/ image }}
{{# text }}
- {{{ . }}}
{{/ text }}
{{/ examples }}
## Read current value
```bash
defaults read {{ domain }} {{ key }}
```
## Delete current value
```bash
defaults delete {{ domain }} {{ key }}{{# if after }} && {{ after }}{{/ if }}
```