summaryrefslogtreecommitdiff
path: root/gpsprof
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-07-13 15:36:14 -0700
committerGary E. Miller <gem@rellim.com>2016-07-13 15:36:14 -0700
commit713381b3f63cb5cbdba552adac485d4104216143 (patch)
treeb7d262970e1d743b7f5ff7c67c5a794850623242 /gpsprof
parente0d8dfbcc39eabcfc82cf6b1832758edef68298e (diff)
downloadgpsd-713381b3f63cb5cbdba552adac485d4104216143.tar.gz
Set gpsprof output size to 800,600
When using '-T png' the plots were too small.
Diffstat (limited to 'gpsprof')
-rwxr-xr-xgpsprof2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpsprof b/gpsprof
index a1402b94..13931840 100755
--- a/gpsprof
+++ b/gpsprof
@@ -490,7 +490,7 @@ if __name__ == '__main__':
if not title:
title = plot.whatami()
if terminal:
- sys.stdout.write("set terminal %s\n" % terminal)
+ sys.stdout.write("set terminal %s size 800,600\n" % terminal)
sys.stdout.write("set title \"%s\"\n" % title)
sys.stdout.write(plot.plot())
except KeyboardInterrupt: