From 363428a09358d3381373e4da2a872b27bfaa52ee Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Sun, 16 Aug 2026 13:13:01 +0200 Subject: [PATCH 01/16] Add new window manager documentation --- astro.config.mjs | 3 ++ .../Desktops/window-managers/hyprland.mdx | 32 +++++++++++++++++ .../Users/Desktops/window-managers/index.mdx | 6 ++-- .../Desktops/window-managers/mangowc.mdx | 32 +++++++++++++++++ .../Users/Desktops/window-managers/niri.mdx | 32 +++++++++++++++++ .../Users/Desktops/window-managers/sway.mdx | 35 +++++++++++++++---- 6 files changed, 132 insertions(+), 8 deletions(-) create mode 100644 src/content/docs/Users/Desktops/window-managers/hyprland.mdx create mode 100644 src/content/docs/Users/Desktops/window-managers/mangowc.mdx create mode 100644 src/content/docs/Users/Desktops/window-managers/niri.mdx diff --git a/astro.config.mjs b/astro.config.mjs index 92aae807..f6811aea 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -139,6 +139,9 @@ export default defineConfig({ label: "Window Managers", items: [ { slug: "users/desktops/window-managers" }, + { slug: "users/desktops/window-managers/hyprland" }, + { slug: "users/desktops/window-managers/mangowc" }, + { slug: "users/desktops/window-managers/niri" }, { slug: "users/desktops/window-managers/sway" }, ], }, diff --git a/src/content/docs/Users/Desktops/window-managers/hyprland.mdx b/src/content/docs/Users/Desktops/window-managers/hyprland.mdx new file mode 100644 index 00000000..c72f6140 --- /dev/null +++ b/src/content/docs/Users/Desktops/window-managers/hyprland.mdx @@ -0,0 +1,32 @@ +--- +title: 'Hyprland' +lastUpdated: 2026-08-16T00:00:00Z +description: "Install and configure the Hyprland Wayland compositor" +license: "CC-BY-SA-4.0" +copyright: "Copyright © 2026 aerynOS Developers" +--- + +[Hyprland](https://hypr.land/) is a dynamic tiling Wayland compositor with a strong focus on customization, visual polish, and modern Wayland features. It is well suited to users who want a highly configurable tiling workflow. + +## Installing Hyprland + +Hyprland is available in the AerynOS repositories and can be installed with `moss`: + +```bash +sudo moss install hyprland +``` + +## Starting Hyprland + +After installation, select the Hyprland session from your display manager or start it from a TTY: + +```bash +start-hyprland +``` + +## Configuration + +Refer to the official Hyprland documentation: + +- [Getting started](https://wiki.hypr.land/Getting-Started/) +- [Configuration](https://wiki.hypr.land/Configuring/) diff --git a/src/content/docs/Users/Desktops/window-managers/index.mdx b/src/content/docs/Users/Desktops/window-managers/index.mdx index 1772bad6..e7022034 100644 --- a/src/content/docs/Users/Desktops/window-managers/index.mdx +++ b/src/content/docs/Users/Desktops/window-managers/index.mdx @@ -1,11 +1,13 @@ --- title: 'Window Managers' -lastUpdated: 2025-03-09T00:00:00Z -description: Lightweight window manager environments +lastUpdated: 2026-08-16T00:00:00Z +description: Install and configure lightweight window manager environments license: "CC-BY-SA-4.0" copyright: "Copyright © 2025 aerynOS Developers" --- import DirectoryList from '@components/DirectoryList.astro'; +AerynOS provides documentation for Hyprland, MangoWC, Niri, and Sway. Choose a window manager below for installation, startup, and configuration instructions. + diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx new file mode 100644 index 00000000..9108f6ae --- /dev/null +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -0,0 +1,32 @@ +--- +title: 'MangoWC' +lastUpdated: 2026-08-16T00:00:00Z +description: "Install and configure the MangoWC Wayland compositor" +license: "CC-BY-SA-4.0" +copyright: "Copyright © 2026 aerynOS Developers" +--- + +[MangoWC](https://mangowm.github.io/) is a minimal Wayland compositor focused on simplicity and performance. + +## Installing MangoWC + +Install MangoWC with `moss`: + +```bash +sudo moss install mangowm +``` + +## Starting MangoWC + +After installation, select the MangoWC session from your display manager or start it from a TTY: + +```bash +mango +``` + +## Configuration + +Refer to the official Mango documentation: + +- [Quick start](https://mangowm.github.io/docs/quick-start/) +- [Configuration basics](https://mangowm.github.io/docs/configuration/basics/) diff --git a/src/content/docs/Users/Desktops/window-managers/niri.mdx b/src/content/docs/Users/Desktops/window-managers/niri.mdx new file mode 100644 index 00000000..16e094c2 --- /dev/null +++ b/src/content/docs/Users/Desktops/window-managers/niri.mdx @@ -0,0 +1,32 @@ +--- +title: 'Niri' +lastUpdated: 2026-08-16T00:00:00Z +description: "Install and configure the Niri Wayland compositor" +license: "CC-BY-SA-4.0" +copyright: "Copyright © 2026 aerynOS Developers" +--- + +[Niri](https://niri-wm.github.io/niri/) is a scrollable tiling Wayland compositor designed around horizontally scrollable workspaces. It provides a keyboard-driven workflow with a different paradigm from traditional tiling window managers. + +## Installing Niri + +Niri is available in the AerynOS repositories and can be installed with `moss`: + +```bash +sudo moss install niri +``` + +## Starting Niri + +After installation, select the Niri session from your display manager or start it from a TTY: + +```bash +niri-session +``` + +## Configuration + +Refer to the official Niri documentation: + +- [Getting started](https://niri-wm.github.io/niri/Getting-Started.html) +- [Configuration introduction](https://niri-wm.github.io/niri/Configuration%3A-Introduction.html) diff --git a/src/content/docs/Users/Desktops/window-managers/sway.mdx b/src/content/docs/Users/Desktops/window-managers/sway.mdx index e7492f67..0ee1a3d6 100644 --- a/src/content/docs/Users/Desktops/window-managers/sway.mdx +++ b/src/content/docs/Users/Desktops/window-managers/sway.mdx @@ -1,20 +1,43 @@ --- title: 'Sway' -lastUpdated: 2025-03-09T00:00:00Z -description: "Sway Wayland window manager" +lastUpdated: 2026-08-16T00:00:00Z +description: "Install and configure the Sway Wayland compositor" license: "CC-BY-SA-4.0" copyright: "Copyright © 2025 aerynOS Developers" --- -[Sway](https://swaywm.org/) is a dynamic tiling window manager designed as a drop-in replacement for i3, but built for Wayland. It offers a lightweight workflow that is well suited to machines where users prefer keyboard driven navigation over graphical shell integrations. +[Sway](https://swaywm.org/) is a dynamic tiling window manager designed as a drop-in replacement for i3, built for Wayland. It provides a lightweight, keyboard-driven workflow without relying on a full desktop environment. -### Installing Sway on AerynOS +## Installing Sway -Sway is currently packaged as a single minimal session that you can add to any existing AerynOS installation. Install the package set with `moss`: +Sway can be installed as a standalone compositor or with an AerynOS-provided minimal configuration and branding. + +### Base installation + +```bash +sudo moss install sway +``` + +### Optional AerynOS configuration and branding + +Install the minimal preconfigured setup and AerynOS branding with: ```bash sudo moss install pkgset-aeryn-sway-minimal sudo moss install branding-aeryn-sway ``` -After installation you can select the Sway session from your display manager, or start it directly from a TTY with `exec sway`. +## Starting Sway + +After installation, select the Sway session from your display manager or start it from a TTY: + +```bash +exec sway +``` + +## Configuration + +Sway uses a configuration format similar to i3. Refer to the official resources for full configuration details: + +- [Sway documentation](https://swaywm.org/docs/) +- [Sway wiki](https://github.com/swaywm/sway/wiki) From f2143597be87e2b85a9e557311edf9a6087315e7 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:00:52 +0200 Subject: [PATCH 02/16] Update src/content/docs/Users/Desktops/window-managers/index.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/index.mdx b/src/content/docs/Users/Desktops/window-managers/index.mdx index e7022034..e23ed8e2 100644 --- a/src/content/docs/Users/Desktops/window-managers/index.mdx +++ b/src/content/docs/Users/Desktops/window-managers/index.mdx @@ -8,6 +8,6 @@ copyright: "Copyright © 2025 aerynOS Developers" import DirectoryList from '@components/DirectoryList.astro'; -AerynOS provides documentation for Hyprland, MangoWC, Niri, and Sway. Choose a window manager below for installation, startup, and configuration instructions. +aerynOS provides documentation for Hyprland, MangoWC, Niri, and Sway. Choose a window manager below for installation, startup, and configuration instructions. From 610a1d46e11d98d838a902dd0ffdc59d0dca50c5 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:04 +0200 Subject: [PATCH 03/16] Update src/content/docs/Users/Desktops/window-managers/hyprland.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/hyprland.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/hyprland.mdx b/src/content/docs/Users/Desktops/window-managers/hyprland.mdx index c72f6140..49ed4064 100644 --- a/src/content/docs/Users/Desktops/window-managers/hyprland.mdx +++ b/src/content/docs/Users/Desktops/window-managers/hyprland.mdx @@ -10,7 +10,7 @@ copyright: "Copyright © 2026 aerynOS Developers" ## Installing Hyprland -Hyprland is available in the AerynOS repositories and can be installed with `moss`: +Hyprland is available in the aerynOS repositories and can be installed with `moss`: ```bash sudo moss install hyprland From 33908b877c50e92700555ef4b327bcccbc9593a8 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:13 +0200 Subject: [PATCH 04/16] Update src/content/docs/Users/Desktops/window-managers/mangowc.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/mangowc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx index 9108f6ae..ab564c4e 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -1,7 +1,7 @@ --- title: 'MangoWC' lastUpdated: 2026-08-16T00:00:00Z -description: "Install and configure the MangoWC Wayland compositor" +description: "Install and configure the MangoWM Wayland compositor" license: "CC-BY-SA-4.0" copyright: "Copyright © 2026 aerynOS Developers" --- From 823052c84b3beff5952d9145e9eb171136930e68 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:22 +0200 Subject: [PATCH 05/16] Update src/content/docs/Users/Desktops/window-managers/niri.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/niri.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/niri.mdx b/src/content/docs/Users/Desktops/window-managers/niri.mdx index 16e094c2..e6780e09 100644 --- a/src/content/docs/Users/Desktops/window-managers/niri.mdx +++ b/src/content/docs/Users/Desktops/window-managers/niri.mdx @@ -10,7 +10,7 @@ copyright: "Copyright © 2026 aerynOS Developers" ## Installing Niri -Niri is available in the AerynOS repositories and can be installed with `moss`: +Niri is available in the aerynOS repositories and can be installed with `moss`: ```bash sudo moss install niri From 819c8930b8d14c5d7fceba244c5396c704e179ca Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:32 +0200 Subject: [PATCH 06/16] Update src/content/docs/Users/Desktops/window-managers/sway.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/sway.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/sway.mdx b/src/content/docs/Users/Desktops/window-managers/sway.mdx index 0ee1a3d6..c9111d1d 100644 --- a/src/content/docs/Users/Desktops/window-managers/sway.mdx +++ b/src/content/docs/Users/Desktops/window-managers/sway.mdx @@ -20,7 +20,7 @@ sudo moss install sway ### Optional AerynOS configuration and branding -Install the minimal preconfigured setup and AerynOS branding with: +Install the minimal preconfigured setup and aerynOS branding with: ```bash sudo moss install pkgset-aeryn-sway-minimal From 2719bcf28312cef43f2972e22ff54be6dbdd7dab Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:41 +0200 Subject: [PATCH 07/16] Update src/content/docs/Users/Desktops/window-managers/sway.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/sway.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/sway.mdx b/src/content/docs/Users/Desktops/window-managers/sway.mdx index c9111d1d..d5277e19 100644 --- a/src/content/docs/Users/Desktops/window-managers/sway.mdx +++ b/src/content/docs/Users/Desktops/window-managers/sway.mdx @@ -10,7 +10,7 @@ copyright: "Copyright © 2025 aerynOS Developers" ## Installing Sway -Sway can be installed as a standalone compositor or with an AerynOS-provided minimal configuration and branding. +Sway can be installed as a standalone compositor or with an aerynOS-provided minimal configuration and branding. ### Base installation From 3dc69884af1572c9e4ec1e1892226a945b1fd9f9 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:01:51 +0200 Subject: [PATCH 08/16] Update src/content/docs/Users/Desktops/window-managers/mangowc.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/mangowc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx index ab564c4e..0a08105f 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -18,7 +18,7 @@ sudo moss install mangowm ## Starting MangoWC -After installation, select the MangoWC session from your display manager or start it from a TTY: +After installation, select the MangoWM session from your display manager or start it from a TTY: ```bash mango From d4e2b9ae2f326a719456cc7a94c3a13ce770457d Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:02:01 +0200 Subject: [PATCH 09/16] Update src/content/docs/Users/Desktops/window-managers/mangowc.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/mangowc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx index 0a08105f..178186a6 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -10,7 +10,7 @@ copyright: "Copyright © 2026 aerynOS Developers" ## Installing MangoWC -Install MangoWC with `moss`: +Install MangoWM with `moss`: ```bash sudo moss install mangowm From 8e4a06541298bf45e86b831185347e21c3d15f4f Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:02:10 +0200 Subject: [PATCH 10/16] Update src/content/docs/Users/Desktops/window-managers/mangowc.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/mangowc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx index 178186a6..34ad6bf3 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -1,5 +1,5 @@ --- -title: 'MangoWC' +title: 'MangoWM' lastUpdated: 2026-08-16T00:00:00Z description: "Install and configure the MangoWM Wayland compositor" license: "CC-BY-SA-4.0" From de229b9c6c4677bd86885e1eee4a83770833ae00 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:02:19 +0200 Subject: [PATCH 11/16] Update src/content/docs/Users/Desktops/window-managers/mangowc.mdx Co-authored-by: NomadicCore --- src/content/docs/Users/Desktops/window-managers/mangowc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx index 34ad6bf3..dd327320 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowc.mdx @@ -6,7 +6,7 @@ license: "CC-BY-SA-4.0" copyright: "Copyright © 2026 aerynOS Developers" --- -[MangoWC](https://mangowm.github.io/) is a minimal Wayland compositor focused on simplicity and performance. +[MangoWM](https://mangowm.github.io/) is a minimal Wayland compositor focused on simplicity and performance. ## Installing MangoWC From 0b89d8d40010222efaa468bc1992fe7710aeb811 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:07:44 +0200 Subject: [PATCH 12/16] Rename mangowc.mdx to mangowm.mdx --- .../Users/Desktops/window-managers/{mangowc.mdx => mangowm.mdx} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/content/docs/Users/Desktops/window-managers/{mangowc.mdx => mangowm.mdx} (100%) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowc.mdx b/src/content/docs/Users/Desktops/window-managers/mangowm.mdx similarity index 100% rename from src/content/docs/Users/Desktops/window-managers/mangowc.mdx rename to src/content/docs/Users/Desktops/window-managers/mangowm.mdx From da24e842237a5b3a4bd7a437d604d2c3c4fdacef Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:08:09 +0200 Subject: [PATCH 13/16] Update astro.config.mjs --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index f6811aea..c4a96dfd 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -140,7 +140,7 @@ export default defineConfig({ items: [ { slug: "users/desktops/window-managers" }, { slug: "users/desktops/window-managers/hyprland" }, - { slug: "users/desktops/window-managers/mangowc" }, + { slug: "users/desktops/window-managers/mangowm" }, { slug: "users/desktops/window-managers/niri" }, { slug: "users/desktops/window-managers/sway" }, ], From fe4a3154ea262878f366abe6d3605b3171ae6cea Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:09:31 +0200 Subject: [PATCH 14/16] Update index.mdx --- src/content/docs/Users/Desktops/window-managers/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/index.mdx b/src/content/docs/Users/Desktops/window-managers/index.mdx index e23ed8e2..c813b039 100644 --- a/src/content/docs/Users/Desktops/window-managers/index.mdx +++ b/src/content/docs/Users/Desktops/window-managers/index.mdx @@ -8,6 +8,6 @@ copyright: "Copyright © 2025 aerynOS Developers" import DirectoryList from '@components/DirectoryList.astro'; -aerynOS provides documentation for Hyprland, MangoWC, Niri, and Sway. Choose a window manager below for installation, startup, and configuration instructions. +aerynOS provides documentation for Hyprland, MangoWM, Niri, and Sway. Choose a window manager below for installation, startup, and configuration instructions. From a1cebe897fd7e262e90fd613c13ca6905d6205a2 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:10:03 +0200 Subject: [PATCH 15/16] Update mangowm.mdx --- src/content/docs/Users/Desktops/window-managers/mangowm.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/Users/Desktops/window-managers/mangowm.mdx b/src/content/docs/Users/Desktops/window-managers/mangowm.mdx index dd327320..fd3613be 100644 --- a/src/content/docs/Users/Desktops/window-managers/mangowm.mdx +++ b/src/content/docs/Users/Desktops/window-managers/mangowm.mdx @@ -8,7 +8,7 @@ copyright: "Copyright © 2026 aerynOS Developers" [MangoWM](https://mangowm.github.io/) is a minimal Wayland compositor focused on simplicity and performance. -## Installing MangoWC +## Installing MangoWM Install MangoWM with `moss`: @@ -16,7 +16,7 @@ Install MangoWM with `moss`: sudo moss install mangowm ``` -## Starting MangoWC +## Starting MangoWM After installation, select the MangoWM session from your display manager or start it from a TTY: From 40705659cbb8d4f68c69c6c613d82bdb956c62c2 Mon Sep 17 00:00:00 2001 From: Alice <36531905+CookieSource@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:18:13 +0200 Subject: [PATCH 16/16] Update sway.mdx --- src/content/docs/Users/Desktops/window-managers/sway.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/Users/Desktops/window-managers/sway.mdx b/src/content/docs/Users/Desktops/window-managers/sway.mdx index d5277e19..aca54f49 100644 --- a/src/content/docs/Users/Desktops/window-managers/sway.mdx +++ b/src/content/docs/Users/Desktops/window-managers/sway.mdx @@ -18,7 +18,7 @@ Sway can be installed as a standalone compositor or with an aerynOS-provided min sudo moss install sway ``` -### Optional AerynOS configuration and branding +### Optional aerynOS configuration and branding Install the minimal preconfigured setup and aerynOS branding with: