mirror of
https://github.com/openoms/bitcoin-tutorials.git
synced 2025-12-19 04:54:18 +01:00
nokyc: repeat run even after error
This commit is contained in:
@@ -28,7 +28,7 @@ sudo wget https://raw.githubusercontent.com/tmuxinator/tmuxinator/master/complet
|
|||||||
echo "export EDITOR=$(which nano)" >> ~/.bashrc
|
echo "export EDITOR=$(which nano)" >> ~/.bashrc
|
||||||
|
|
||||||
# tmuxinator config
|
# tmuxinator config
|
||||||
cat << EOF > ~/.config/tmuxinator/nokyc.yml
|
cat << EOF > ~/.config/tmuxinator/nokyceur.yml
|
||||||
name: nokyc
|
name: nokyc
|
||||||
root: ~/nokyc/
|
root: ~/nokyc/
|
||||||
|
|
||||||
@@ -37,11 +37,11 @@ windows:
|
|||||||
layout: even-vertical
|
layout: even-vertical
|
||||||
panes:
|
panes:
|
||||||
- selleur:
|
- 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:
|
- 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:
|
- 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
|
EOF
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user