From 796aeac892d62df97b9fb329f2006a0cbca96964 Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Wed, 28 Aug 2024 12:14:46 +0200 Subject: [PATCH] feat: rename installer.sh to setup.sh --- README.md | 4 ++-- docs/docker.md | 2 +- docs/libvirt.md | 2 +- installer.sh => setup.sh | 18 +++++++++--------- 4 files changed, 13 insertions(+), 13 deletions(-) rename installer.sh => setup.sh (98%) diff --git a/README.md b/README.md index da62a1f..93902f7 100644 --- a/README.md +++ b/README.md @@ -443,10 +443,10 @@ FREERDP_COMMAND="" ### Step 4: Run the WinApps Installer Run the WinApps installer. ```bash -./installer.sh +./setup.sh ``` -A list of supported additional arguments can be accessed by running `./installer.sh --help`. +A list of supported additional arguments can be accessed by running `./setup.sh --help`. WinApps Installer Animation. diff --git a/docs/docker.md b/docs/docker.md index 7a070d0..afb1ba8 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -56,7 +56,7 @@ docker compose --file ~/.config/winapps/compose.yaml up > Since no Windows user password is set by default, Windows may automatically log in, which may cause the WinApps installation to fail due to complications establishing an RDP connection. To avoid this issue, please use the VNC connection to ensure that the Windows user is logged out before starting the WinApps installation. ```bash -./installer.sh +./setup.sh ``` ### Changing `compose.yaml` diff --git a/docs/libvirt.md b/docs/libvirt.md index 992819e..3e24d18 100644 --- a/docs/libvirt.md +++ b/docs/libvirt.md @@ -679,5 +679,5 @@ You may now proceed to install other applications like 'Microsoft 365', 'Adobe C Finally, restart the virtual machine, but **DO NOT** log in. Close the virtual machine viewer and proceed to run the WinApps installation. ```bash -./installer.sh +./setup.sh ``` diff --git a/installer.sh b/setup.sh similarity index 98% rename from installer.sh rename to setup.sh index 60a9b39..e878442 100755 --- a/installer.sh +++ b/setup.sh @@ -125,13 +125,13 @@ function waTerminateScript() { # Role: Displays usage information for the script. function waUsage() { echo -e "Usage: - ${COMMAND_TEXT}./installer.sh --user${CLEAR_TEXT} # Install WinApps and selected applications in ${HOME} - ${COMMAND_TEXT}./installer.sh --system${CLEAR_TEXT} # Install WinApps and selected applications in /usr - ${COMMAND_TEXT}./installer.sh --user --setupAllOfficiallySupportedApps${CLEAR_TEXT} # Install WinApps and all officially supported applications in ${HOME} - ${COMMAND_TEXT}./installer.sh --system --setupAllOfficiallySupportedApps${CLEAR_TEXT} # Install WinApps and all officially supported applications in /usr - ${COMMAND_TEXT}./installer.sh --user --uninstall${CLEAR_TEXT} # Uninstall everything in ${HOME} - ${COMMAND_TEXT}./installer.sh --system --uninstall${CLEAR_TEXT} # Uninstall everything in /usr - ${COMMAND_TEXT}./installer.sh --help${CLEAR_TEXT} # Display this usage message." + ${COMMAND_TEXT}./setup.sh --user${CLEAR_TEXT} # Install WinApps and selected applications in ${HOME} + ${COMMAND_TEXT}./setup.sh --system${CLEAR_TEXT} # Install WinApps and selected applications in /usr + ${COMMAND_TEXT}./setup.sh --user --setupAllOfficiallySupportedApps${CLEAR_TEXT} # Install WinApps and all officially supported applications in ${HOME} + ${COMMAND_TEXT}./setup.sh --system --setupAllOfficiallySupportedApps${CLEAR_TEXT} # Install WinApps and all officially supported applications in /usr + ${COMMAND_TEXT}./setup.sh --user --uninstall${CLEAR_TEXT} # Uninstall everything in ${HOME} + ${COMMAND_TEXT}./setup.sh --system --uninstall${CLEAR_TEXT} # Uninstall everything in /usr + ${COMMAND_TEXT}./setup.sh --help${CLEAR_TEXT} # Display this usage message." } # Name: 'waSetWorkingDirectory' @@ -349,7 +349,7 @@ function waCheckExistingInstall() { # Display the suggested action(s). echo "--------------------------------------------------------------------------------" - echo -e "Please remove the existing WinApps installation using ${COMMAND_TEXT}./installer.sh --user --uninstall${CLEAR_TEXT}." + echo -e "Please remove the existing WinApps installation using ${COMMAND_TEXT}./setup.sh --user --uninstall${CLEAR_TEXT}." echo "--------------------------------------------------------------------------------" # Terminate the script. @@ -369,7 +369,7 @@ function waCheckExistingInstall() { # Display the suggested action(s). echo "--------------------------------------------------------------------------------" - echo -e "Please remove the existing WinApps installation using ${COMMAND_TEXT}./installer.sh --system --uninstall${CLEAR_TEXT}." + echo -e "Please remove the existing WinApps installation using ${COMMAND_TEXT}./setup.sh --system --uninstall${CLEAR_TEXT}." echo "--------------------------------------------------------------------------------" # Terminate the script.