> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Hiding Navigator tiles

export const Comments = ({children}) => {
  return <div class="my-4 px-5 py-4 overflow-hidden rounded-2xl flex gap-3 border border-zinc-500/20 bg-zinc-50/50 dark:border-zinc-500/30 dark:bg-zinc-500/10" data-callout-type="comments">
      <div class="w-4">
        <svg width="14" height="14" viewBox="0 0 640 640" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" aria-label="Comments">
            <path d="M320 112C434.9 112 528 205.1 528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112zM320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM280 400C266.7 400 256 410.7 256 424C256 437.3 266.7 448 280 448L360 448C373.3 448 384 437.3 384 424C384 410.7 373.3 400 360 400L352 400L352 312C352 298.7 341.3 288 328 288L280 288C266.7 288 256 298.7 256 312C256 325.3 266.7 336 280 336L304 336L304 400L280 400zM320 256C337.7 256 352 241.7 352 224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224C288 241.7 302.3 256 320 256z" />
        </svg>
      </div>
      <div class="text-sm prose min-w-0 w-full">
        {children}
      </div>
    </div>;
};

Anaconda Navigator contains some configuration options that allow you to customize the visibility of application tiles available on the Navigator **Home** tab.

## Creating configuration files

To customize Navigator's tiles, create a configuration file (for example, `hide-tiles.yaml`) in the Navigator applications folder.

<Note>
  Configuration files can be named whatever you want (within the character limits for files in your operating system), but must be in `.yaml` format.

  The Navigator applications folder is inside the hidden `.anaconda` folder, which is created when Navigator is opened for the very first time.
</Note>

Choose the tab that corresponds with your operating system for command line instructions on opening the Navigator applications folder and creating a `.yaml` file within it.

<Tabs>
  <Tab title="Windows CLI">
    1. Open an [Anaconda Prompt](/reference/glossary#anaconda-prompt) window.

    2. Navigate to the Navigator applications folder by running the following command:

       ```sh theme={null}
       cd %APPDATA%\.anaconda\navigator\applications\
       ```

    3. Create a new blank configuration file by running the following command:

       ```sh theme={null}
       type nul > <FILE_NAME>.yaml
       ```

           <Comments>
             Replace \<FILE\_NAME> with the desired name for your config file.<br />
             For example, `nav-tile-config.yaml`.
           </Comments>

    4. Open the new file in your default text editor by running the following command:

       ```sh theme={null}
       <FILE_NAME>.yaml
       ```
  </Tab>

  <Tab title="macOS and Linux CLI">
    1. Open a Terminal window.

    2. Navigate to the Navigator applications folder by running the following command:

       ```sh theme={null}
       cd ~/.anaconda/navigator/applications/
       ```

    3. Create a new blank configuration file by running the following command:

       ```sh theme={null}
       touch <FILE_NAME>.yaml
       ```

           <Comments>
             Replace \<FILE\_NAME> with the desired name for your config file.<br />
             For example, `nav-tile-config.yaml`.
           </Comments>

    4. Open the new file in your default text editor by running the following command:

       ```sh theme={null}
       open <FILE_NAME>.yaml
       ```
  </Tab>
</Tabs>

## Hiding existing tiles

The tiles that are visible on the Navigator **Home** page are controlled by the <Tooltip tip="A location (URL or file path) in a repository where conda looks for packages.">channels</Tooltip> you have in your channels list. For example, the JupyterLab tile, along with the `jupyterlab` package, is available on the Home page when you have the `defaults` channel in your channels list, but becomes unavailable (and not visible) if `defaults` is removed from the channels list.

Furthermore, if you add `conda-forge`, `bioconda`, or other <Tooltip tip="Any storage location from which software or software assets, like packages, can be retrieved and installed on a local computer.">repository</Tooltip> channels to your channels list, you will see additional application tiles on the Home page.

If you don't want some of these tiles to be visible, you can use the config `.yaml` file in your Navigator applications folder to set their availability to `false`.

There are some default applications that have hardcoded names within Navigator:

* Anaconda AI Navigator - `ai_navigator`
* Anaconda Notebooks - `anaconda_notebooks`
* Anaconda Toolbox - `anaconda-toolbox`
* EduBlocks - `edublocks`
* Glueviz - `glueviz`
* IBM watsonx - `ibm_watson`
* JupyterLab - `jupyterlab`
* Jupyter Notebook - `notebook`
* Oracle Cloud Infrastructure - `oracle_oci`
* Orange 3 - `orange3`
* PyCharm Community - `pycharm_ce`
* PyCharm Professional - `pycharm_pro`
* PythonAnywhere - `python_anywhere`
* PyScript - `pyscript`
* QT Console - `qtconsole`
* RStudio - `rstudio`
* Spyder - `spyder`
* VS Code - `vscode`

Any other package tiles are hidden by their tile name.

1. [Create a new config file](#creating-configuration-files) or edit an existing one.
2. Add text similar to the following, depending on the tile(s) you want to hide:

   ```sh theme={null}
   vscode:
       is_available: false
   pycharm_ce:
       is_available: false
   # For example, if you have conda-forge added as a channel
   pyboat:
       is_available: false
   gnuradio-core:
       is_available: false
   ```

In this example, the VS Code and PyCharm Community default application tiles and the `pyboat` and `gnuradio-core` tiles from `conda-forge` will be hidden from users in the Navigator **Home** tab.

<Warning>
  If your tiles fail to hide, ensure that your yaml file does not contain any tab spacing. Use four spaces instead of a tab for any indents.
</Warning>

<Note>
  Navigator currently does not support pattern matching or regex while hiding tile names.
</Note>
