# ▸sh\_cfg\_bg

### ◾ cfg.bg.static.enabled

{% tabs %}
{% tab title="Description" %}
if enabled; interface will display a static background behind all other elements of the script.
{% endtab %}

{% tab title="Default" %}

```lua
cfg.bg.static.enabled = false
```

{% endtab %}
{% endtabs %}

####

### ◾ cfg.bg.static.list

{% tabs %}
{% tab title="Description" %}
Stores a list of URLs which will be used to display a static wallpaper within the interface.

**`Requires:`**` ``cfg.bg.static.enabled = true`
{% endtab %}

{% tab title="Default" %}

```lua
cfg.bg.static.list =
{
    'http://cdn.rlib.io/wp/s/1.jpg',
    'http://cdn.rlib.io/wp/s/2.jpg',
    'http://cdn.rlib.io/wp/s/3.jpg',
    'http://cdn.rlib.io/wp/s/4.jpg',
    'http://cdn.rlib.io/wp/s/5.jpg',
    'http://cdn.rlib.io/wp/s/6.jpg',
    'http://cdn.rlib.io/wp/s/7.jpg',
    'http://cdn.rlib.io/wp/s/8.jpg',
    'http://cdn.rlib.io/wp/s/9.jpg',
}
```

{% endtab %}
{% endtabs %}

####

### ◾ cfg.bg.live.enabled

{% tabs %}
{% tab title="Description" %}
If enabled; interface will display live wallpapers (animated).
{% endtab %}

{% tab title="Default" %}

```lua
cfg.bg.static.enabled = false
```

{% endtab %}
{% endtabs %}

####

### ◾ cfg.bg.live.list

{% tabs %}
{% tab title="Description" %}
Stores a list of URLs which will be used to display an animated wallpaper within the interface.

**`Requires:`**` ``cfg.bg.live.enabled = true`
{% endtab %}

{% tab title="Default" %}

```lua
cfg.bg.live.list =
{
    'http://cdn.rlib.io/wp/l/index.php?id=default_1',
    'http://cdn.rlib.io/wp/l/index.php?id=default_2',
    'http://cdn.rlib.io/wp/l/index.php?id=default_3',
    'http://cdn.rlib.io/wp/l/index.php?id=default_4',
    'http://cdn.rlib.io/wp/l/index.php?id=default_5',
    'http://cdn.rlib.io/wp/l/index.php?id=default_6',
    'http://cdn.rlib.io/wp/l/index.php?id=default_7',
    'http://cdn.rlib.io/wp/l/index.php?id=default_8',
    'http://cdn.rlib.io/wp/l/index.php?id=default_9',
    'http://cdn.rlib.io/wp/l/index.php?id=default_10',
    'http://cdn.rlib.io/wp/l/index.php?id=default_11',
}
```

{% endtab %}

{% tab title="Notes" %}
Live wallpapers take priority over static wallpapers. If you have both static and live wallpapers enabled; then live wallpapers will be displayed.
{% endtab %}
{% endtabs %}

####

### ◾ cfg.bg.filter

{% tabs %}
{% tab title="Description" %}
Series of settings related to the filter for backgrounds.

These will make the background blurred, darker / lighter, etc.
{% endtab %}

{% tab title="Settings" %}

```lua
cfg.bg.filter.enabled       = true
cfg.bg.filter.clr           = Color( 0, 0, 0, 25 )
cfg.bg.filter.blur          = false
cfg.bg.filter.blur_power    = 3
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: 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:

```
GET https://builderx.rlib.io/configuration/settings/sh_cfg_bg.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
