This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
manjaroConfiguration/README.md

17 lines
913 B
Markdown
Raw Normal View History

# Personal configuration for Manjaro
2022-02-16 16:10:20 +01:00
2021-12-19 22:48:40 +01:00
<details><summary>Détails concernant l'import/export de la clé GPG</summary>
2021-12-19 22:40:19 +01:00
- Export clé publique : `gpg --output public.gpg --armor --export user@email`
- Export clé privé : `gpg --output private.gpg --armor --export-secret-key user@email`
- Import clés publique : `gpg --import public.gpg`
- Import clés privé : `gpg --allow-secret-key-import --import private.gpg`
2022-02-16 18:57:45 +01:00
- Fetch key number (`sec`) : `gpg --list-secret-keys --keyid-format LONG user@email` (dans `sec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]` c'est `30F2B65B9246B6CA`)
- Use this key for Git : `git config --global user.signingkey <numéro de la clé>`
2021-12-19 22:48:40 +01:00
</details>
2021-11-08 16:31:03 +01:00
2022-02-16 18:57:45 +01:00
Run this command to use my configuration (feel free to custom it btw) :
```bash
2022-02-16 18:57:45 +01:00
wget -q --show-progress https://git.kennel.ml/Anri/manjaroConfiguration/raw/branch/main/installation.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```