Improve alters formatting post-conversion

- Alerts that contained a heading have been changed so that the "heading" now appears in place of the alert title. The alert icon and color still reflect the alert type.
- Removed unneccessary blank space.
This commit is contained in:
Bugg4 2025-10-30 20:20:39 +01:00 committed by Mihai Fufezan
parent ca52bd678b
commit a9624be8c9
7 changed files with 21 additions and 39 deletions

View file

@ -153,13 +153,12 @@ You have nine choices:
- Special Workspace: `special` or `special:name` for named special workspaces. - Special Workspace: `special` or `special:name` for named special workspaces.
> [!WARNING] > [!WARNING]
> `special` is supported ONLY on `movetoworkspace` and `movetoworkspacesilent`. > `special` is supported ONLY on `movetoworkspace` and `movetoworkspacesilent`.
> Any other dispatcher will result in undocumented behavior. > Any other dispatcher will result in undocumented behavior.
> [!WARNING] > [!WARNING]
> Numerical workspaces (e.g. `1`, `2`, `13371337`) are allowed **ONLY** between 1 > Numerical workspaces (e.g. `1`, `2`, `13371337`) are allowed **ONLY** between 1
> and 2147483647 (inclusive) > and 2147483647 (inclusive).
>
> Neither `0` nor negative numbers are allowed. > Neither `0` nor negative numbers are allowed.
## Special Workspace ## Special Workspace

View file

@ -213,8 +213,7 @@ monitor = eDP-1, 2880x1800@90, 0x0, 1, bitdepth, 10
> [!WARNING] > [!WARNING]
> Colors registered in Hyprland (e.g. the border color) do _not_ support > Colors registered in Hyprland (e.g. the border color) do _not_ support
> 10 bit. > 10 bit.
>
> Some applications do _not_ support screen capture with 10 bit enabled. > Some applications do _not_ support screen capture with 10 bit enabled.
### Color management presets ### Color management presets

View file

@ -29,8 +29,7 @@ windowrule = immediate, class:^(cs2)$
> [!WARNING] > [!WARNING]
> If you experience graphical issues, you may be out of luck. Tearing support is > If you experience graphical issues, you may be out of luck. Tearing support is
> experimental. > experimental.
>
> See the likely culprits below. > See the likely culprits below.
## Common issues ## Common issues

View file

@ -26,21 +26,15 @@ the layout pages and not here. (See the Sidebar for Dwindle and Master layouts)
| gradient | a gradient, in the form of `color color ... [angle]` where `color` is a color (see above) and angle is an angle in degrees, in the format of `123deg` e.g. `45deg` (e.g. `rgba(11ee11ff) rgba(1111eeff) 45deg`) Angle is optional and will default to `0deg` | | gradient | a gradient, in the form of `color color ... [angle]` where `color` is a color (see above) and angle is an angle in degrees, in the format of `123deg` e.g. `45deg` (e.g. `rgba(11ee11ff) rgba(1111eeff) 45deg`) Angle is optional and will default to `0deg` |
| font_weight | an integer between 100 and 1000, or one of the following presets: `thin` `ultralight` `light` `semilight` `book` `normal` `medium` `semibold` `bold` `ultrabold` `heavy` `ultraheavy` | | font_weight | an integer between 100 and 1000, or one of the following presets: `thin` `ultralight` `light` `semilight` `book` `normal` `medium` `semibold` `bold` `ultrabold` `heavy` `ultraheavy` |
> [!NOTE] > [!NOTE] **Colors**
> **_Colors:_**
> >
> You have 3 options: > You have 3 options:
> > - rgba(), e.g. `rgba(b3ff1aee)`, or the decimal equivalent `rgba(179,255,26,0.933)`
> rgba(), e.g. `rgba(b3ff1aee)`, or the decimal equivalent `rgba(179,255,26,0.933)`
>
> (decimal rgba/rgb values should have no spaces between numbers) > (decimal rgba/rgb values should have no spaces between numbers)
> > - rgb(), e.g. `rgb(b3ff1a)`, or the decimal equivalent `rgb(179,255,26)`
> rgb(), e.g. `rgb(b3ff1a)`, or the decimal equivalent `rgb(179,255,26)` > - legacy, e.g. `0xeeb3ff1a` -> ARGB order
>
> legacy, e.g. `0xeeb3ff1a` -> ARGB order
> [!NOTE] > [!NOTE] **Mod list**
> **_Mod list:_**
> >
> ```ini > ```ini
> SHIFT CAPS CTRL/CONTROL ALT MOD2 MOD3 SUPER/WIN/LOGO/MOD4 MOD5 > SHIFT CAPS CTRL/CONTROL ALT MOD2 MOD3 SUPER/WIN/LOGO/MOD4 MOD5
@ -206,9 +200,8 @@ _Subcategory `decoration:shadow:`_
| off_window_axis_events | Handles axis events around (gaps/border for tiled, dragarea/border for floated) a focused window. `0` ignores axis events `1` sends out-of-bound coordinates `2` fakes pointer coordinates to the closest point inside the window `3` warps the cursor to the closest point inside the window | int | 1 | | off_window_axis_events | Handles axis events around (gaps/border for tiled, dragarea/border for floated) a focused window. `0` ignores axis events `1` sends out-of-bound coordinates `2` fakes pointer coordinates to the closest point inside the window `3` warps the cursor to the closest point inside the window | int | 1 |
| emulate_discrete_scroll | Emulates discrete scrolling from high resolution scrolling events. `0` disables it, `1` enables handling of non-standard events only, and `2` force enables all scroll wheel events to be handled | int | 1 | | emulate_discrete_scroll | Emulates discrete scrolling from high resolution scrolling events. `0` disables it, `1` enables handling of non-standard events only, and `2` force enables all scroll wheel events to be handled | int | 1 |
> [!NOTE] > [!NOTE] **XKB Settings**
> ### XKB Settings >
>
> You can find a list of models, layouts, variants and options in > You can find a list of models, layouts, variants and options in
> [`/usr/share/X11/xkb/rules/base.lst`](file:///usr/share/X11/xkb/rules/base.lst). > [`/usr/share/X11/xkb/rules/base.lst`](file:///usr/share/X11/xkb/rules/base.lst).
> Alternatively, you can use the `localectl` command to discover what is available > Alternatively, you can use the `localectl` command to discover what is available
@ -217,17 +210,15 @@ _Subcategory `decoration:shadow:`_
> For switchable keyboard configurations, take a look at > For switchable keyboard configurations, take a look at
> [the uncommon tips & tricks page entry](../Uncommon-tips--tricks/#switchable-keyboard-layouts). > [the uncommon tips & tricks page entry](../Uncommon-tips--tricks/#switchable-keyboard-layouts).
> [!NOTE] > [!NOTE] **Follow Mouse Cursor**
> ### Follow Mouse Cursor
>
> - 0 - Cursor movement will not change focus. > - 0 - Cursor movement will not change focus.
> - 1 - Cursor movement will always change focus to the window under the cursor. > - 1 - Cursor movement will always change focus to the window under the cursor.
> - 2 - Cursor focus will be detached from keyboard focus. Clicking on a window > - 2 - Cursor focus will be detached from keyboard focus. Clicking on a window
> will move keyboard focus to that window. > will move keyboard focus to that window.
> - 3 - Cursor focus will be completely separate from keyboard focus. Clicking on > - 3 - Cursor focus will be completely separate from keyboard focus. Clicking on
> a window will not change keyboard focus. > a window will not change keyboard focus.
>
> ### Custom accel profiles > [!NOTE] **Custom Accel Profiles**
> >
> #### `accel_profile` > #### `accel_profile`
> >

View file

@ -7,8 +7,7 @@ we prefer to begin possible bug reports or feature requests as *discussions*,
and elevate them to issues if they can be confirmed by a member to be relevant, and elevate them to issues if they can be confirmed by a member to be relevant,
and once enough information about the problem has been gathered. and once enough information about the problem has been gathered.
> [!NOTE] > [!NOTE] **Why?**
> ### Why?
> >
> We are volunteers, doing this in our free time. Out of respect, please read this document > We are volunteers, doing this in our free time. Out of respect, please read this document
> _fully_ before posting an issue _or_ discussion. If you can spend a few minutes reading this, > _fully_ before posting an issue _or_ discussion. If you can spend a few minutes reading this,

View file

@ -362,13 +362,10 @@ Draws a password input field.
| valign | vertical alignment | str | center | | valign | vertical alignment | str | center |
| zindex | z-index of the widget | int | 0 | | zindex | z-index of the widget | int | 0 |
> [!NOTE] > [!NOTE] **Colors information**
> #### Colors information >
> > When `outline_thickness` set to `0`, the color of the inner box will be changed instead of the outer.
> When `outline_thickness` set to `0`, the color of the inner box will be changed instead of the outer. > Behaviour of `swap_font_color` is as follows:
>
> Behaviour of `swap_font_color` is as follows:
>
> - `outline_thickness` is `0`: if set, font color will be swapped with inner one on color change events (e.g. Caps-lock on or password check). > - `outline_thickness` is `0`: if set, font color will be swapped with inner one on color change events (e.g. Caps-lock on or password check).
> - `outline_thickness` is not `0`: if set, font and inner colors will be swapped on password check and authentication failure. > - `outline_thickness` is not `0`: if set, font and inner colors will be swapped on password check and authentication failure.
> - `swap_font_color` will narrow the accent colors from a gradient to a single color by using the first specified color. > - `swap_font_color` will narrow the accent colors from a gradient to a single color by using the first specified color.

View file

@ -8,11 +8,9 @@ This page will tell you how to use plugins.
## Disclaimers ## Disclaimers
> [!WARNING] > [!WARNING]
> Plugins are written in C++ and will run as a part of Hyprland. > Plugins are written in C++ and will run as a part of Hyprland.
>
> Make sure to _always_ read the source code of the plugins you are going to use > Make sure to _always_ read the source code of the plugins you are going to use
> and to trust the source. > and to trust the source.
>
> Writing a plugin to wipe your computer is easy. > Writing a plugin to wipe your computer is easy.
> >
> _**Never**_ trust random `.so` files you receive from other people. > _**Never**_ trust random `.so` files you receive from other people.