How can I make gnuplot plot its plots in full-screen instead of a small window?
Asked
Active
Viewed 2,415 times
4
-
Which operating system are you on? – slhck Jun 24 '12 at 20:39
-
@slhck On Ubuntu (running GTK, if that matters) – Anna Jun 24 '12 at 20:41
-
http://stackoverflow.com/questions/25409071/how-to-open-gnuplots-in-full-screen-and-a-particular-size – Ciro Santilli OurBigBook.com Oct 09 '15 at 08:40
1 Answers
1
You can open use the -geometry option of gnuplot to supply the size of the window.
If you use gnuplot inside a script, you can do something like this:
resolution=$(xrandr | grep '*') && resolution=${resolution% *}
gnuplot -persist -geometry $resolution << EOF
plot sin(x)
EOF
As an alternative you can make this alias in your .bashrc or whatever
alias gnuplotfs="resolution=\$(xrandr | grep '*') && resolution=\${resolution% *} && gnuplot -geometry \$resolution"
Bernhard
- 1,115
- 9
- 17