mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-07 14:05:59 +01:00
72 lines
1.4 KiB
Markdown
72 lines
1.4 KiB
Markdown
|
hyprlock is a simple, yet fast, multi-threaded and GPU-accelerated screen
|
||
|
lock for hyprland.
|
||
|
|
||
|
{{ < toc >}}
|
||
|
|
||
|
## Configuration
|
||
|
|
||
|
### General
|
||
|
|
||
|
Variables in the `general` category:
|
||
|
| variable | description | type | default |
|
||
|
| -- | -- | -- | -- |
|
||
|
| disable_loading_bar | disables the loading bar on the bottom of the screen while hyprlock is booting up. | bool | false |
|
||
|
|
||
|
## Widgets
|
||
|
|
||
|
The entire configuration of how hyprlock looks is done via widgets.
|
||
|
|
||
|
```ini
|
||
|
widget_name {
|
||
|
monitor =
|
||
|
# further options
|
||
|
}
|
||
|
```
|
||
|
|
||
|
`monitor` can be left empty for "all monitors"
|
||
|
|
||
|
## Widget List
|
||
|
|
||
|
### Background
|
||
|
|
||
|
Draws a background image.
|
||
|
|
||
|
```ini
|
||
|
background {
|
||
|
monitor =
|
||
|
path = /home/me/someImage.png # only png supported for now
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Input Field
|
||
|
|
||
|
Draws a password input field.
|
||
|
|
||
|
```ini
|
||
|
input-field {
|
||
|
monitor =
|
||
|
size = 200, 50
|
||
|
outline_thickness = 3
|
||
|
outer_color = rgb(151515)
|
||
|
inner_color = rgb(200, 200, 200)
|
||
|
fade_on_empty = true
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Label
|
||
|
|
||
|
Draws a label.
|
||
|
|
||
|
```ini
|
||
|
label {
|
||
|
monitor =
|
||
|
text = Hi there, $USER # Supported variables: $USER
|
||
|
color = rgba(200, 200, 200, 1.0)
|
||
|
position = 0, 80 # position is added to the halign and valign props. For absolute, use "none" in either.
|
||
|
font_size = 25
|
||
|
font_family = Noto Sans
|
||
|
|
||
|
halign = center # left, center, right, none
|
||
|
valign = center # top, center, bottom, none
|
||
|
}
|
||
|
```
|