Step 1: Download the Grayjay Desktop App

  1. Go to the official website or download link provided for Grayjay Desktop and download the appropriate version for your system (e.g., Linux x64).
  2. Save the downloaded file (usually a .zip or .tar.gz) in your Downloads folder.

Step 2: Extract and Move the Application

Open a terminal and navigate to your Downloads directory:

    cd ~/Downloads

    Extract the file (replace Grayjay.Desktop-linux-x64-v2.tar.gz with the actual file name):

    tar -xvzf Grayjay.Desktop-linux-x64-v2.tar.gz

    Move the extracted folder to your Desktop directory:

    mv Grayjay.Desktop-linux-x64-v2 ~/Desktop/

    Verify that the application folder is now in the Desktop directory:

    ls ~/Desktop

    Step 3: Add Grayjay to Your System PATH (Optional)

    To run the Grayjay app from anywhere in the terminal, add it to your system PATH.

    Open your .bashrc or .zshrc file in a text editor:

      nano ~/.bashrc

      Or, for Zsh users:

      nano ~/.zshrc

      Add the following line at the end of the file:

      export PATH=”$PATH:$HOME/Desktop/Grayjay.Desktop-linux-x64-v2″

      Save the file (Ctrl+O, Enter, Ctrl+X) and reload your shell:

      source ~/.bashrc

      Or, for Zsh:

      source ~/.zshrc

      Test it by running Grayjay directly:

      Grayjay

      Step 4: Create a .desktop Launcher

      1. Create a .desktop file in ~/.local/share/applications:
      nano ~/.local/share/applications/Grayjay.desktop

      Add the following content to the file:

      [Desktop Entry] Version=1.0 Name=Grayjay Comment=Run the Grayjay application Exec=/home/<YOUR USERACCOUNT>/Desktop/Grayjay.Desktop-linux-x64-v2/Grayjay Icon=/home/<YOUR USERACCOUNT>/Desktop/Grayjay.Desktop-linux-x64-v2/logo.ico Terminal=true Type=Application Categories=Utility; Path=/home/<YOUR USERACCOUNT>/Desktop/Grayjay.Desktop-linux-x64-v2

      Note: Adjust paths if necessary to match your actual setup.

      • Save the file (Ctrl+O, Enter, Ctrl+X).
      • Make the .desktop file executable:
      chmod +x ~/.local/share/applications/Grayjay.desktop

      Test the launcher:

      1. Open your application menu and search for “Grayjay.”
      2. Click on the launcher to verify it works.

      Summary of Benefits:

      • Keeps Everything on Desktop: The application is stored in the Desktop directory for easy access during configuration.
      • PATH Configuration (Optional): Allows running Grayjay from anywhere in the terminal without needing the full path.
      • .desktop Launcher: Adds Grayjay to your application menu for easy access.