From e3093265e461048bb8cb6ea096897eba924645cf Mon Sep 17 00:00:00 2001 From: suvanbanerjee Date: Wed, 17 Apr 2024 16:28:38 +0530 Subject: [PATCH 1/6] added uninstall in README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 1013cf27..ff594883 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,19 @@ EOF Few scenarios are available as example in the [scenarios](https://github.com/OpenVoiceOS/ovos-installer/tree/main/scanerios) directory of this repository. +## Uninstall + +To uninstall Open Voice OS run the installer with the `--uninstall` option. even if you dont run the installer with the `--uninstall` option, the installer will check if ovos is installed and will ask you if you want to uninstall it. + +```shell +sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh -u && rm installer.sh +``` +or +``` shell +sudo ./installer.sh -u +``` + + ## Screenshots ![Screenshot 1](docs/images/screenshot_1.png) From dfdae0adeb31a717bf6b7379fb0c46b663aef419 Mon Sep 17 00:00:00 2001 From: suvanbanerjee Date: Wed, 17 Apr 2024 17:09:26 +0530 Subject: [PATCH 2/6] removed second command --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index ff594883..67d9bd76 100644 --- a/README.md +++ b/README.md @@ -66,10 +66,6 @@ To uninstall Open Voice OS run the installer with the `--uninstall` option. even ```shell sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh -u && rm installer.sh ``` -or -``` shell -sudo ./installer.sh -u -``` ## Screenshots From bd16ef6f0214b98628824e1811cc5123527249f3 Mon Sep 17 00:00:00 2001 From: suvanbanerjee Date: Wed, 17 Apr 2024 18:20:30 +0530 Subject: [PATCH 3/6] replace -u with --uninstall --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67d9bd76..e646c7c0 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Few scenarios are available as example in the [scenarios](https://github.com/Ope To uninstall Open Voice OS run the installer with the `--uninstall` option. even if you dont run the installer with the `--uninstall` option, the installer will check if ovos is installed and will ask you if you want to uninstall it. ```shell -sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh -u && rm installer.sh +sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh --uninstall && rm installer.sh ``` From a8de9cb8ad345359d3204ed07795567dfc033cdc Mon Sep 17 00:00:00 2001 From: Suvan Banerjee Date: Thu, 18 Apr 2024 20:29:17 +0530 Subject: [PATCH 4/6] removed confusing part --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e646c7c0..e909f862 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Few scenarios are available as example in the [scenarios](https://github.com/Ope ## Uninstall -To uninstall Open Voice OS run the installer with the `--uninstall` option. even if you dont run the installer with the `--uninstall` option, the installer will check if ovos is installed and will ask you if you want to uninstall it. +To uninstall Open Voice OS run the installer with the `--uninstall` option. ```shell sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh --uninstall && rm installer.sh From 2b0f86c8b7ce6751c0eb8dba3d54491bdf7d4897 Mon Sep 17 00:00:00 2001 From: suvanbanerjee Date: Thu, 18 Apr 2024 21:15:05 +0530 Subject: [PATCH 5/6] updated message --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e909f862..309e794e 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Few scenarios are available as example in the [scenarios](https://github.com/Ope ## Uninstall -To uninstall Open Voice OS run the installer with the `--uninstall` option. +To uninstall Open Voice OS run the installer with the --uninstall option (non-interactive) or simply run the installer and answer `Yes` to the `Do you want to uninstall Open Voice OS?` question. ```shell sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh --uninstall && rm installer.sh From 38504677d32c62bfcf858c7131c5496972396ef3 Mon Sep 17 00:00:00 2001 From: suvanbanerjee Date: Thu, 18 Apr 2024 21:16:02 +0530 Subject: [PATCH 6/6] converted --uninstall to codeblock --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 309e794e..a021c46c 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Few scenarios are available as example in the [scenarios](https://github.com/Ope ## Uninstall -To uninstall Open Voice OS run the installer with the --uninstall option (non-interactive) or simply run the installer and answer `Yes` to the `Do you want to uninstall Open Voice OS?` question. +To uninstall Open Voice OS run the installer with the `--uninstall` option (non-interactive) or simply run the installer and answer `Yes` to the `Do you want to uninstall Open Voice OS?` question. ```shell sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh --uninstall && rm installer.sh