ssy: fix stdout

This commit is contained in:
Daniella / Tove 2024-11-04 00:30:55 +01:00
parent 720ecabbe8
commit d9baa50301
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -2,7 +2,7 @@ with import <nixpkgs> {};
pkgs.writeShellScriptBin "ssy" ''
#!/bin/sh
startsync 2>&1 > /dev/null & disown
while ! ls ~/sync/Passwords.kdbx 2>&1 > /dev/null ; do sleep 0.1 ; done
startsync > /dev/null 2>&1 & disown
while ! ls ~/sync/Passwords.kdbx > /dev/null 2>&1 ; do sleep 0.1 ; done
''