diff --git a/README.md b/README.md index f63f173..d8a4544 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,17 @@ You can download pre-compiled binaries of AngryOxide in the [releases](https://g ```bash tar -xf angryoxide-linux-x86_64.tar.gz # Untar -chmod +x install # Make executable -sudo install install # Install (as root, including zsh/bash completions) +chmod +x install.sh # Make executable +sudo ./install.sh # Install (as root, including zsh/bash completions) ``` You can get information about how to use AngryOxide in the [User Guide](https://github.com/Ragnt/AngryOxide/wiki/1.-User-Guide). +#### Uninstalling: + +```bash +sudo ./install.sh uninstall # Uninstall +``` ## Features diff --git a/install b/install.sh similarity index 97% rename from install rename to install.sh index cb5b675..e6ec496 100755 --- a/install +++ b/install.sh @@ -75,7 +75,8 @@ case "$1" in uninstall ;; *) - echo "Usage: $0 (install|uninstall)" - exit 1 + install_binary + install_bash + install_zsh ;; esac