Forrest logo
back to context overview

xterm

List of commands for xterm:

  • xterm:tldr:35ad1 xterm: Open the terminal using a Serif font and a font size equal to 20.
    $ xterm -fa ${'Serif'} -fs ${20}
    try on your machine
    explain this command
  • xterm:tldr:5a7db xterm: Open the terminal in fullscreen mode.
    $ xterm -fullscreen
    try on your machine
    explain this command
  • xterm:tldr:7ca2f xterm: Open the terminal with 100 characters per line and 35 lines, in screen position x=200px, y=20px.
    $ xterm -geometry ${100}x${35}+${200}+${20}
    try on your machine
    explain this command
  • xterm:tldr:a4ccf xterm: Open the terminal with a dark blue background and yellow foreground (font color).
    $ xterm -bg ${darkblue} -fg ${yellow}
    try on your machine
    explain this command
  • xterm:tldr:d3e34 xterm: Open the terminal with a title of `Example`.
    $ xterm -T ${Example}
    try on your machine
    explain this command
back to context overview