Start Xterm Maximized

9

I want to start xterm in maximized mode. For example: xterm -maximized. Could you suggest me a way (either via command line or via Xdefaults or anything else)?

There is a lot of discussion on Internet and none leads to a solution. I do not want to specify the geometry option, and then specify a large enough geometry. I just want it plain and simple - maximized. Does such an option exist?

Regards, Ajay.

user562064

Posted 2011-03-24T05:35:43.137

Reputation:

Answers

5

It looks like xterm supports exactly what you propose (xterm -maximized), but only as of Jan. 2009. See the changelog.

If you need to make it work with an older version of xterm, I would either try to figure out how to customize your window manager to maximize xterms with a certain resource set, or look for a way to programmatically set the maximize hints described here.

Andy

Posted 2011-03-24T05:35:43.137

Reputation: 186

3

xterm -maximized

generally speaking, PROGRAM -help gives you help in unix.

Richard June

Posted 2011-03-24T05:35:43.137

Reputation: 787

Or program -?, which is usually a safe way to trigger the usage() function and also published in The New KornShell, 1995. – Clint Pachl – 2018-03-27T06:42:49.983

@ClintPachl Most programs don't work with -? because the shell interprets ? as a single-character wildcard. A lot use -h instead. – Tripp Kinetics – 2018-11-16T20:10:16.807

0

I added a keyboard shortcut (Super+Intro) with: xterm -maximized

oroverdino

Posted 2011-03-24T05:35:43.137

Reputation: 1