> For the complete documentation index, see [llms.txt](https://builderx.rlib.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://builderx.rlib.io/configuration/settings/sh_cfg_bg.md).

# ▸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 %}
