diff --git a/docs/setup/linux.de.md b/docs/setup/linux.de.md index 3bc0fb6e..0aa3520b 100644 --- a/docs/setup/linux.de.md +++ b/docs/setup/linux.de.md @@ -16,17 +16,14 @@ Hier wird die Einrichtung für Linux beschrieben. MySpeed lässt sich über vers ``` ## Automatische Installation -!!! tip "Tipp" - Du möchtest MySpeed unter einem bestimmten Pfad installieren? Dann setze doch einfach den Parameter `-d /dein/installations/pfad` hinter den Befehl - === "Stabile Version" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- + bash <(curl -sSL https://install.myspeed.dev) ``` === "Entwicklungsversion" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta ``` ## Automatischer Deinstallationsprozess @@ -37,12 +34,12 @@ Keine Lust mehr? Du kannst MySpeed ganz einfach wieder entfernen. Entscheide hie === "Daten behalten" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data ``` === "Daten löschen" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash ``` ## Manuelle Installation diff --git a/docs/setup/linux.en.md b/docs/setup/linux.en.md index 43fe2a65..c2c70464 100644 --- a/docs/setup/linux.en.md +++ b/docs/setup/linux.en.md @@ -21,12 +21,12 @@ Here the setup for Linux is described. MySpeed can be installed in several ways. === "Stable Version" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- + bash <(curl -sSL https://install.myspeed.dev) ``` === "Development Version" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta ``` ## Automatic uninstall process @@ -37,12 +37,12 @@ Don't want to use MySpeed anymore? You can easily remove MySpeed. Decide here if === "Keep data" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data ``` === "Delete data" ```sh - curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash + curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash ``` ## Manual installation diff --git a/chooser.sh b/scripts/chooser.sh similarity index 94% rename from chooser.sh rename to scripts/chooser.sh index 47965ed3..bf5356a3 100644 --- a/chooser.sh +++ b/scripts/chooser.sh @@ -26,11 +26,11 @@ read -p "Enter your choice (1/2): " choice case $choice in 1) echo -e "${BLUE}Running Docker installation script...${NORMAL}" - bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/docker-install.sh) + bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/docker-install.sh) ;; 2) echo -e "${BLUE}Running normal installation script...${NORMAL}" - bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh) + bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh) ;; *) echo -e "${RED}Invalid choice. Exiting.${NORMAL}" diff --git a/docker-install.sh b/scripts/docker-install.sh similarity index 100% rename from docker-install.sh rename to scripts/docker-install.sh diff --git a/install.sh b/scripts/install.sh similarity index 100% rename from install.sh rename to scripts/install.sh diff --git a/uninstall.sh b/scripts/uninstall.sh similarity index 100% rename from uninstall.sh rename to scripts/uninstall.sh