i have a script in bash that read the file Throughputtx.txt and print this information in a graph of GNUPLOT, but this graph goes to the left side of my screen and I want it to be printed in the center of my screen.
gnuplot --persist -e "set xlabel \"No. Payload\"; set ylabel \"Throughput TX [bps]\"; plot \"Throughputtx.txt\" using 1:2 title 'Throughput in TX' with lines"
wxtyou can set the position explicitly e.g.set term wxt position 600,800. OTOH the legacyx11terminal type supports an oldschool-geometryspecification on the command line.