From 47c402325a46cc7c7d044fd6e36c9c5aa39ac85c Mon Sep 17 00:00:00 2001 From: Rui Alves Date: Thu, 17 Oct 2019 16:56:41 +0100 Subject: [PATCH] xterm: add page (#3388) --- pages/linux/xterm.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/linux/xterm.md diff --git a/pages/linux/xterm.md b/pages/linux/xterm.md new file mode 100644 index 0000000000..d7e04201ad --- /dev/null +++ b/pages/linux/xterm.md @@ -0,0 +1,23 @@ +# xterm + +> A terminal emulator for the X Window System. + +- Open the terminal with a title of `Example`: + +`xterm -T {{Example}}` + +- Open the terminal in fullscreen mode: + +`xterm -fullscreen` + +- Open the terminal with a dark blue background and yellow foreground (font color): + +`xterm -bg {{darkblue}} -fg {{yellow}}` + +- 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}}` + +- Open the terminal using a Serif font and a font size equal to 20: + +`xterm -fa {{'Serif'}} -fs {{20}}`