From 00198e5aca3e1832cb574b00df694cee82e4946e Mon Sep 17 00:00:00 2001 From: TudbuT Date: Mon, 4 Nov 2024 16:38:50 +0100 Subject: [PATCH] ssy: wait 1.2 seconds instead of 0.7 --- ssy.script.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssy.script.nix b/ssy.script.nix index 0161539..aa9bb1d 100644 --- a/ssy.script.nix +++ b/ssy.script.nix @@ -3,7 +3,7 @@ with import {}; pkgs.writeShellScriptBin "ssy" '' #!/bin/sh startsync > /dev/null 2>&1 & disown - sleep 0.7 + sleep 1.2 while ! ls ~/sync/Passwords.kdbx > /dev/null 2>&1 ; do sleep 0.1 ; done ''