diff --git a/LivelyInfo.json b/LivelyInfo.json
new file mode 100644
index 00000000..afbc5832
--- /dev/null
+++ b/LivelyInfo.json
@@ -0,0 +1,13 @@
+{
+ "AppVersion": "2.0.7.4",
+ "Title": "Fluids",
+ "Thumbnail": "thumbnail.jpg",
+ "Preview": "preview.gif",
+ "Desc": "Fluid simulation using WebGL, reacts with system audio & cursor.",
+ "Author": "PavelDoGreat",
+ "License": "MIT",
+ "Contact": "https://github.com/rocksdanister/WebGL-Fluid-Simulation",
+ "Type": 1,
+ "Arguments": "--audio --pause-event true",
+ "FileName": "index.html"
+}
\ No newline at end of file
diff --git a/LivelyProperties.json b/LivelyProperties.json
new file mode 100644
index 00000000..2c138d97
--- /dev/null
+++ b/LivelyProperties.json
@@ -0,0 +1,204 @@
+{
+ "label0": {
+ "type": "label",
+ "value": "Audio"
+ },
+ "audioReact": {
+ "type": "checkbox",
+ "value": true,
+ "text": "Visualiser"
+ },
+ "randomSplats": {
+ "type": "checkbox",
+ "value": false,
+ "text": "Random Splats"
+ },
+ "label1": {
+ "type": "label",
+ "value": "Performance"
+ },
+ "quality": {
+ "type": "dropdown",
+ "value": 0,
+ "text": "Quality",
+ "items": [
+ "High",
+ "Medium",
+ "Low",
+ "Very Low"
+ ]
+ },
+ "simResolution": {
+ "type": "dropdown",
+ "value": 2,
+ "text": "Sim Resolution",
+ "items": [
+ "32",
+ "64",
+ "128",
+ "256"
+ ]
+ },
+ "label2": {
+ "type": "label",
+ "value": "Color"
+ },
+ "colorLeft": {
+ "text": "Left",
+ "type": "color",
+ "value": "#FF0000"
+ },
+ "colorRight": {
+ "text": "Right",
+ "type": "color",
+ "value": "#FFFF00"
+ },
+ "customColor": {
+ "type": "checkbox",
+ "value": false,
+ "text": "Enable"
+ },
+ "label3": {
+ "type": "label",
+ "value": "Simulation"
+ },
+ "densityDiffusion": {
+ "max": 40,
+ "min": 0,
+ "tick": 41,
+ "text": "Density Diffusion",
+ "type": "slider",
+ "value": 10
+ },
+ "velocityDiffusion": {
+ "max": 400,
+ "min": 0,
+ "tick": 401,
+ "text": "Velocity Diffusion",
+ "type": "slider",
+ "value": 100
+ },
+ "pressure": {
+ "max": 100,
+ "min": 0,
+ "tick": 101,
+ "text": "Pressure",
+ "type": "slider",
+ "value": 10
+ },
+ "vorticity": {
+ "max": 50,
+ "min": 0,
+ "tick": 51,
+ "text": "Vorticity",
+ "type": "slider",
+ "value": 20
+ },
+ "splatRadius": {
+ "max": 100,
+ "min": 1,
+ "tick": 100,
+ "text": "Splat Radius",
+ "type": "slider",
+ "value": 20
+ },
+ "shading": {
+ "type": "checkbox",
+ "value": true,
+ "text": "Shading"
+ },
+ "colorful": {
+ "type": "checkbox",
+ "value": true,
+ "text": "Colorful"
+ },
+ "bloomEnable": {
+ "type": "checkbox",
+ "value": true,
+ "text": "Bloom"
+ },
+ "bloomIntensity": {
+ "max": 200,
+ "min": 10,
+ "tick": 191,
+ "text": "Bloom Intensity",
+ "type": "slider",
+ "value": 15
+ },
+ "bloomThreshold": {
+ "max": 100,
+ "min": 0,
+ "tick": 101,
+ "text": "Bloom Threshold",
+ "type": "slider",
+ "value": 75
+ },
+ "sunRaysEnable": {
+ "type": "checkbox",
+ "value": true,
+ "text": "Sunrays"
+ },
+ "sunRaysWeight": {
+ "max": 100,
+ "min": 30,
+ "tick": 71,
+ "text": "Sunray Weight",
+ "type": "slider",
+ "value": 40
+ },
+ "label4": {
+ "type": "label",
+ "value": "Background"
+ },
+ "backgroundColor": {
+ "text": "Color",
+ "type": "color",
+ "value": "#000000"
+ },
+ "backgroundSrc": {
+ "type": "folderDropdown",
+ "value": "pexels-neosiam-601798.jpg",
+ "text": "Image/WebM Video",
+ "filter": "*.jpg|*.jpeg|*.webp|*.png|*.webm",
+ "folder": "wallpapers"
+ },
+ "backgroundFit": {
+ "type": "dropdown",
+ "value": 2,
+ "text": "Choose a Fit",
+ "items": [
+ "Contain",
+ "Cover",
+ "Fill",
+ "None"
+ ]
+ },
+ "backgroundEnabled": {
+ "type": "checkbox",
+ "value": false,
+ "text": "Enable"
+ },
+ "label5": {
+ "type": "label",
+ "value": "Overlay"
+ },
+ "overlaySrc": {
+ "type": "folderDropdown",
+ "value": "icon-lively-300.png",
+ "text": "Image",
+ "filter": "*.jpg|*.jpeg|*.webp|*.png|*.svg",
+ "folder": "overlays"
+ },
+ "overlaySize": {
+ "max": 100,
+ "min": 5,
+ "text": "Size",
+ "type": "slider",
+ "value": 25
+ },
+ "overlayEnabled": {
+ "type": "checkbox",
+ "value": false,
+ "text": "Enable"
+ }
+}
diff --git a/README.md b/README.md
index 1e74fd5c..5f33ae9c 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,9 @@
# WebGL Fluid Simulation
+Modified to work with [lively](https://github.com/rocksdanister/lively) wallpaper system, reacts with system audio.
-[Play here](https://paveldogreat.github.io/WebGL-Fluid-Simulation/)
+Download: [Fluids_v3.zip](https://github.com/rocksdanister/WebGL-Fluid-Simulation/releases/download/v3/Fluids_v3.zip)
-
+Drag & drop the file into lively window.
## References
diff --git a/index.html b/index.html
index e812fc02..8bf6bf89 100644
--- a/index.html
+++ b/index.html
@@ -1,114 +1,80 @@
-