From 713381b3f63cb5cbdba552adac485d4104216143 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Wed, 13 Jul 2016 15:36:14 -0700 Subject: Set gpsprof output size to 800,600 When using '-T png' the plots were too small. --- gpsprof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gpsprof') 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: -- cgit v1.2.1