diff --git a/README.md b/README.md
index 803b3fd..1282250 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[![NuGet](https://img.shields.io/nuget/v/NXUI.svg)](https://www.nuget.org/packages/NXUI)
[![NuGet](https://img.shields.io/nuget/dt/NXUI.svg)](https://www.nuget.org/packages/NXUI)
-Creating minimal [Avalonia](https://avaloniaui.net/) next generation (NXUI, next-gen UI) application using C# 10 and .NET 6 and 7
+Creating minimal [Avalonia](https://avaloniaui.net/) next generation (NXUI, next-gen UI) application using C# 10 and .NET 6, 7 or 8
https://user-images.githubusercontent.com/2297442/132313187-32f18c4b-e894-46db-9a9d-9de02f30835e.mp4
@@ -15,14 +15,21 @@ https://user-images.githubusercontent.com/2297442/132313187-32f18c4b-e894-46db-9
```
+or for F# support:
+
+```xml
+
+```
+
Additionally, depending on the application type:
### Desktop
+For Desktop extensions:
```xml
```
-or
+or using plain Avalonia:
```xml
```
@@ -74,6 +81,15 @@ AppBuilder.Configure()
.StartWithClassicDesktopLifetime(Build, args);
```
+Minimalistic Desktop app:
+```csharp
+Run(
+ () => Window().Content(Label().Content("NXUI")),
+ "NXUI",
+ args,
+ ThemeVariant.Dark);
+```
+
# Generate
C#