mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-17 15:03:08 +00:00
50 lines
1.3 KiB
Handlebars
50 lines
1.3 KiB
Handlebars
# {{ title }}
|
||
|
||
> {{{ description }}}
|
||
|
||
- **Testé sur macOS**:
|
||
{{# versions }}
|
||
* {{ . }}
|
||
{{/ versions }}
|
||
- **Type de paramètre**: {{ param.type }}
|
||
{{# param.values }}
|
||
* {{ . }}
|
||
{{/ param.values }}
|
||
|
||
{{# if requirements }}
|
||
## Prérequis
|
||
{{# requirements }}
|
||
- [`{{ name }}`]({{ ../url }}{{ folder }}/{{ key }}?id=avec-la-valeur-{{ value }}) doit avoir la valeur `{{ value }}`
|
||
{{/ requirements }}
|
||
|
||
{{/ if }}
|
||
{{# examples }}
|
||
## Avec la valeur `{{{ value }}}`{{# if default }} (par défaut){{/ 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">
|
||
Exemple avec la valeur {{{ ../value }}}
|
||
</video>
|
||
{{/ video }}
|
||
{{# image }}
|
||
<img src="/{{ ../../folder }}-{{ ../../key }}-{{ filename }}" alt="Exemple avec la valeur {{{ ../value }}}"
|
||
width="{{ width }}" height="{{ height }}" style="height: auto" />
|
||
{{/ image }}
|
||
|
||
{{# text }}
|
||
- {{{ . }}}
|
||
{{/ text }}
|
||
|
||
{{/ examples }}
|
||
## Lire la valeur courante
|
||
```bash
|
||
defaults read {{ domain }} {{ key }}
|
||
```
|
||
|
||
## Supprimer la valeur courante
|
||
```bash
|
||
defaults delete {{ domain }} {{ key }}{{# if after }} && {{ after }}{{/ if }}
|
||
```
|