macos-defaults/build/vuepress/templates/fr/page.md.handlebars
2020-09-26 20:24:54 +02:00

57 lines
1.4 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.

---
metaTitle: {{{ title }}} | {{{ name }}} | macOS defaults
---
# {{{ 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 }}.html#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 }}
```