> For the complete documentation index, see [llms.txt](https://unknown-56-works.gitbook.io/luigiscreen/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://unknown-56-works.gitbook.io/luigiscreen/screens-and-streaming/creating-screen.md).

# Creating a Screen

Build a flat vertical wall facing north, south, east or west. Stand in front of it and look at the upper-left block.

Create a named 7x4 screen:

```
/screen create main 7 4
```

Each map is 128x128 pixels, so 7x4 produces an 896x512 output.

## Names and sizes

```
/screen create <name> [width] [height]
```

Examples:

```
/screen create lobby 5 3
/screen create cinema 10 6
```

Names accept lowercase letters, numbers, `_` and `-`. The command converts uppercase input to lowercase.

For compatibility, `/screen create 7 4` creates `main`.

Default per-screen safety limits:

```yaml
screen:
  max-width: 10
  max-height: 6
  max-total-maps: 60
```

## More than one screen

Creating a new named screen no longer removes the previous one. Use `/screen list` to inspect the registry and `/screen remove <name>` to remove a specific display.

Use [Multiple Screens and Clones](/luigiscreen/screens-and-streaming/multiple-screens.md) when several displays should show the same source. Select or change media with [Media Sources](/luigiscreen/screens-and-streaming/sources.md).

## Orientation

If a screen extends in the wrong direction, remove it, stand on the opposite side of the wall and select the upper-left block from that side.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://unknown-56-works.gitbook.io/luigiscreen/screens-and-streaming/creating-screen.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
