Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/guide/first-widget.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ To organize our code, we will create a `StatusBar` class that inherits from the
<h4>Understanding the Arguments</h4>

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you fix this too?

[...] in fullscreen mode. use the [...]

Make it use a comma instead of a full stop. Capitalization would work too but not too sure about if current form is right or not.

- `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.
</TabItem>
Expand Down