# Backgrounds

### ◾ static.enabled

{% tabs %}
{% tab title="Description" %}
[**`boolean`**](https://docs.rlib.io/references/types/boolean)

`Enables / disables static backgrounds. These are regular images with no animation.`
{% endtab %}

{% tab title="Default" %}

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

{% endtab %}
{% endtabs %}

###

### ◾ static.list

{% tabs %}
{% tab title="Description" %}
[**`table`**](https://docs.rlib.io/references/types/table)

`List of static images to use as backgrounds`

`Requires`` `**`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',
}
```

{% endtab %}
{% endtabs %}

###

### ◾ live.enabled

{% tabs %}
{% tab title="Description" %}
[**`boolean`**](https://docs.rlib.io/references/types/boolean)

`Enables / disables live backgrounds which are .webm videos`
{% endtab %}

{% tab title="Default" %}

```lua
live.enabled = false
```

{% endtab %}
{% endtabs %}

###

### ◾ live.list

{% tabs %}
{% tab title="Description" %}
[**`table`**](https://docs.rlib.io/references/types/table)

`List of live backgrounds to use on main interface.`

`Requires`` `**`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',
}
```

{% endtab %}
{% endtabs %}
