From 5fc87371eb917ba479167cc162b9bc1b5676bf96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Anast=C3=A1cio=20da=20Rocha=20Almeida?= Date: Sat, 4 Oct 2025 17:47:52 +0200 Subject: [PATCH] Fix grammar in 'layer' argument description Corrected capitalization and grammar in the explanation of the 'layer' argument. --- src/content/docs/guide/first-widget.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/guide/first-widget.mdx b/src/content/docs/guide/first-widget.mdx index 9754222..75ba83c 100644 --- a/src/content/docs/guide/first-widget.mdx +++ b/src/content/docs/guide/first-widget.mdx @@ -193,7 +193,7 @@ To organize our code, we will create a `StatusBar` class that inherits from the

Understanding the Arguments

Let's take a closer look at the arguments used in the `StatusBar` class: - - `layer`: Ensures that your bar stays visible above any regular applications (except when they are in fullscreen mode. use the `overlay` layer type place it on top of everything). for Hyprland users, to see a list of open layers, use the `hyprctl layers` command. + - `layer`: Ensures that your bar stays visible above any regular applications (except when they are in fullscreen mode. use the `overlay` layer type to place it on top of everything). For Hyprland users, to see a list of open layers, use the `hyprctl layers` command. - `anchor` (Wayland only): Determines the bar's position. For this guide, we want our bar to be at the top, extending from left to right, so we use `left top right`. - `exclusivity` (Wayland only): Ensures that the bar has its own dedicated space and is not overlapped by other windows or widgets.