10 lines
198 B
Fish
Executable file
10 lines
198 B
Fish
Executable file
#!/usr/bin/env fish
|
|
echo '
|
|
set xdata time
|
|
set timefmt "%s"
|
|
set format x "%H:%M:%S"
|
|
# set yrange[0:96]
|
|
while (1) { plot "/home/daniel/.home/.battlog" using 1:2 with linespoints
|
|
pause 5 }
|
|
' | gnuplot
|