# Repositioning the Window

Fig apps can be located in a few predefined positions.

**Default `"3"`**

This is the default position. Fig will be positioned along the right outside edge of the terminal. It will take on the same height as the terminal window.

![](https://1545242415-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MBzsiIfFzkblTOBPFTF%2F-MC5mUNhcW0PCDhsolEA%2F-MC5pX1S1YNJV6x-vaxb%2FScreen%20Shot%202020-06-13%20at%208.13.36%20PM.png?alt=media\&token=0782a6ca-ef8e-40ec-a41e-40e96bc87199)

**Notification `"6"`**

![](https://1545242415-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MBzsiIfFzkblTOBPFTF%2F-MC5mUNhcW0PCDhsolEA%2F-MC5pRuZGQ9Fb9H1arvr%2FScreen%20Shot%202020-06-13%20at%208.12.35%20PM.png?alt=media\&token=f390a609-8ddd-43a8-a6c0-3a05fa9016a8)

**Spotlight `"9"`**

![](https://1545242415-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MBzsiIfFzkblTOBPFTF%2F-MC5mUNhcW0PCDhsolEA%2F-MC5pIr29NBuD1BpmVen%2FScreen%20Shot%202020-06-13%20at%208.14.19%20PM.png?alt=media\&token=3382d144-c696-492f-ae81-f79e4e336d04)

**Full Screen (Inset) `"10"`**

![](https://1545242415-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MBzsiIfFzkblTOBPFTF%2F-MC5mUNhcW0PCDhsolEA%2F-MC5pOb8Ndtb1zZv37MP%2FScreen%20Shot%202020-06-13%20at%208.11.44%20PM.png?alt=media\&token=3cb9b8b3-3b6d-43d4-b992-824cc01c62d2)

> **Heads up.** As the numbering suggest, there are other possible window positions available currently. These should be considered private APIs. Your app is allowed to use them but future versions of Fig may not support these positions.
>
> You can cycle through positions using `fig position <n>` to determine what works well for your app. If you would like to propose a new position, please email <matt@withfig.com>.

### **Reposition Window**

To change the window position of your app, use `fig.reposition`. This takes a the `id` of position you want to switch to. Note that the position `id` must be passed as a string.

`fig.reposition("3")`

> **Note**: `fig.run` and `fig.insert` are sensitive to changes in window position. If you need to use one of them and then change window position, make sure to delay by at least 500 milliseconds.
>
> ```javascript
> fig.run('whoami')
> setTimeout(() => {
>     fig.reposition("3")
> }, 500)
> ```
