From 940365d7cce923e0de6fde4807c3bd998d7faf1f Mon Sep 17 00:00:00 2001 From: openoms Date: Sun, 24 Jul 2022 13:00:24 +0100 Subject: [PATCH] nokyc: repeat run even after error --- nokyc/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nokyc/README.md b/nokyc/README.md index 17060e9..eba36f8 100644 --- a/nokyc/README.md +++ b/nokyc/README.md @@ -28,7 +28,7 @@ sudo wget https://raw.githubusercontent.com/tmuxinator/tmuxinator/master/complet echo "export EDITOR=$(which nano)" >> ~/.bashrc # tmuxinator config -cat << EOF > ~/.config/tmuxinator/nokyc.yml +cat << EOF > ~/.config/tmuxinator/nokyceur.yml name: nokyc root: ~/nokyc/ @@ -37,11 +37,11 @@ windows: layout: even-vertical panes: - selleur: - - while ./nokyc.py -f eur -t sell -d 5; do sleep 600; done + - while true; do ./nokyc.py -f eur -t sell -d 5; sleep 600; done - sellgbp: - - while ./nokyc.py -f gbp -t sell -d 5; do sleep 600; done + - while true; do ./nokyc.py -f gbp -t sell -d 5; sleep 600; done - buyeur: - - while ./nokyc.py -f eur -t buy -d 5; do sleep 600; done + - while true; do ./nokyc.py -f eur -t buy -d 5; sleep 600; done EOF ```