i try to pipe some output from python3 in to dzen2, but dzen wont update.
in bash:
i=0; while true; do; echo $i; (( i++ )); sleep 1; done | dzen2
output terminal:
0
1
2
3...
in python
import time
i=0
while True:
print(i)
i+=1
time.sleep(1)
output terminal:
0
1
2
3...
python3 while.py | dzen2 black empty dzen2-bar
bash-loop.sh | dzen2 black bar which counts from 0 to ...