sway: don't lock as early

This commit is contained in:
Casper V. Kristensen 2024-02-21 14:34:42 +01:00
parent 8b383ff6b0
commit 676bcbece8

View file

@ -26,7 +26,7 @@
}; };
"type:pointer" = { "type:pointer" = {
accel_profile = "flat"; accel_profile = "flat";
pointer_accel = "0.4"; # pointer SPEED, not acceleration pointer_accel = "0.1"; # pointer SPEED, not acceleration
}; };
}; };
output = { output = {
@ -242,8 +242,8 @@
{ event = "before-sleep"; command = lock; } { event = "before-sleep"; command = lock; }
]; ];
timeouts = [ timeouts = [
{ timeout = 900; command = outputOff; resumeCommand = outputOn; } { timeout = 60 * 20; command = outputOff; resumeCommand = outputOn; }
{ timeout = 3600; command = suspend; } { timeout = 60 * 60 * 3; command = suspend; }
]; ];
}; };
}; };