From 99d08c8d10222d87369d4090c532bb8d2e8d4c17 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 5 Nov 2018 22:36:48 +0000 Subject: [PATCH] xfce4-terminal: add page (#2548) --- pages/linux/xfce4-terminal.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/xfce4-terminal.md diff --git a/pages/linux/xfce4-terminal.md b/pages/linux/xfce4-terminal.md new file mode 100644 index 000000000..e1d25d530 --- /dev/null +++ b/pages/linux/xfce4-terminal.md @@ -0,0 +1,27 @@ +# xfce4-terminal + +> The XFCE4 terminal emulator. + +- Open a new terminal window: + +`xfce4-terminal` + +- Set the initial title: + +`xfce4-terminal --initial-title "{{initial_title}}"` + +- Open a new tab in the current terminal window: + +`xfce4-terminal --tab` + +- Execute a command in a new terminal window: + +`xfce4-terminal --command "{{command_with_args}}"` + +- Keep the terminal around after the executed command finishes executing: + +`xfce4-terminal --command "{{command_with_args}}" --hold` + +- Open multiple new tabs, executing a command in each: + +`xfce4-terminal --tab --command "{{command_a}}" --tab --command "{{command_b}}"`