Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
antimicrox [Le 11/03/2023, 08:12] Amiralgaby correction de certaines fautes de syntaxes |
antimicrox [Le 07/07/2024, 13:29] (Version actuelle) Amiralgaby orthographe + indication de langue pour 2 liens |
||
---|---|---|---|
Ligne 26: | Ligne 26: | ||
Voir : | Voir : | ||
* [[antimicro|AntiMicro ou La configuration ultime de sa manette]] (doc Ubuntu) | * [[antimicro|AntiMicro ou La configuration ultime de sa manette]] (doc Ubuntu) | ||
- | * [[https://github.com/AntiMicroX/antimicrox/wiki|Wiki d'AntimicroX (en construction au 2 juillet 2021)]] | + | * [[https://github.com/AntiMicroX/antimicrox/wiki|Wiki d'AntimicroX]] **(en)** |
- | * [[https://github.com/AntiMicro/antimicro/wiki|Wiki de Antimicro (ancien dépôt)]] | + | * [[https://github.com/AntiMicro/antimicro/wiki|Wiki de Antimicro (ancien dépôt)]] **(en)** |
L'interface est épurée pour simplifier la configuration | L'interface est épurée pour simplifier la configuration | ||
{{https://raw.githubusercontent.com/AntiMicroX/antimicrox/master/other/appdata/screenshots/advanced.png}} | {{https://raw.githubusercontent.com/AntiMicroX/antimicrox/master/other/appdata/screenshots/advanced.png}} | ||
+ | |||
+ | |||
+ | ==== Lancer en mode caché ==== | ||
+ | antimicrox --tray | ||
+ | |||
+ | ==== Arrêter AntimicroX à la fin d'un programme ===== | ||
+ | Vous pouvez réaliser un script qui fermera AntimicroX dès qu'un programme se termine. À adapter selon votre programme. | ||
+ | <code bash> | ||
+ | #!/bin/bash | ||
+ | |||
+ | programme & | ||
+ | pid_programme=$! | ||
+ | antimicrox --tray & # lance AntimicroX en mode caché | ||
+ | pid_antimicrox=$! | ||
+ | wait $pid_programme &>/dev/null ; | ||
+ | kill $pid_antimicrox | ||
+ | </code> | ||
+ | //voir [[https://forum.ubuntu-fr.org/viewtopic.php?id=2084518|Bash : Arrêter Minetest et Antimicrox quand je quitte Minetest]]//\\ | ||
+ | //voir [[raccourci-lanceur#creation_d_un_lanceur|créé votre raccourci-lanceur (fichier .desktop)]]// | ||
===== Désinstallation ===== | ===== Désinstallation ===== |