mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
tests/hyprlock: update tests with upstream changes
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
0daef6fbe0
commit
72cc1e3134
4 changed files with 25 additions and 14 deletions
|
|
@ -6,10 +6,7 @@ background {
|
|||
}
|
||||
|
||||
general {
|
||||
disable_loading_bar=true
|
||||
grace=300
|
||||
hide_cursor=true
|
||||
no_fade_in=false
|
||||
}
|
||||
|
||||
input-field {
|
||||
|
|
|
|||
|
|
@ -4,10 +4,7 @@
|
|||
|
||||
settings = {
|
||||
general = {
|
||||
disable_loading_bar = true;
|
||||
grace = 300;
|
||||
hide_cursor = true;
|
||||
no_fade_in = false;
|
||||
};
|
||||
|
||||
background = [
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
animations {
|
||||
fade_in {
|
||||
bezier=easeOutQuint
|
||||
duration=300
|
||||
}
|
||||
|
||||
fade_out {
|
||||
bezier=easeOutQuint
|
||||
duration=300
|
||||
}
|
||||
enabled=true
|
||||
}
|
||||
|
||||
background {
|
||||
monitor=
|
||||
blur_passes=3
|
||||
|
|
@ -12,12 +25,8 @@ background {
|
|||
}
|
||||
|
||||
general {
|
||||
disable_loading_bar=true
|
||||
grace=300
|
||||
hide_cursor=true
|
||||
ignore_empty_input=false
|
||||
no_fade_in=false
|
||||
no_fade_out=false
|
||||
}
|
||||
|
||||
image {
|
||||
|
|
|
|||
|
|
@ -4,12 +4,20 @@
|
|||
|
||||
settings = {
|
||||
general = {
|
||||
disable_loading_bar = true;
|
||||
hide_cursor = true;
|
||||
ignore_empty_input = false;
|
||||
grace = 300;
|
||||
no_fade_in = false;
|
||||
no_fade_out = false;
|
||||
};
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
fade_in = {
|
||||
duration = 300;
|
||||
bezier = "easeOutQuint";
|
||||
};
|
||||
fade_out = {
|
||||
duration = 300;
|
||||
bezier = "easeOutQuint";
|
||||
};
|
||||
};
|
||||
|
||||
background = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue