Slightly increase loop delay

This commit is contained in:
Kristóf Tóth 2020-09-08 16:34:10 +02:00
parent b27bf63162
commit 37989135a7
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import (
const (
initialDelay = 3
loopDelay = 6
loopDelay = 7
keyboardDeviceNode = "/dev/input/by-id/usb-Dell_Dell_USB_Entry_Keyboard-event-kbd"
lockfilePath = "/tmp/after-lock.lock"
printStackTraces = false
@ -73,4 +73,4 @@ func grabExclusiveProcessLock() *lockfile.Lockfile {
panic(err)
}
return lf
}
}