🧰 Styled Hyprlock

- Commented out listener in Hypridle that caused a bug?
- Activated btop
This commit is contained in:
2024-12-31 17:24:33 +01:00
parent 59892a5981
commit 51b30405c5
5 changed files with 15 additions and 24 deletions

View File

@ -7,19 +7,19 @@
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "hyprlock";
lock_cmd = "pidof hyprlock || hyprlock"; # Avoid running multiple instances of hyprlock
};
listener = [
{
timeout = 900; # Seconds
timeout = 900; # 15 min
on-timeout = "hyprlock";
}
{
timeout = 1200;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
# {
# timeout = 1200;
# on-timeout = "hyprctl dispatch dpms off";
# on-resume = "hyprctl dispatch dpms on";
# }
];
};
};