HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

xfce4-terminal — The XFCE4 terminal emulator. More information: <https://docs.xfce.org/apps/xfce4-terminal/start>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
theterminalcommandxfce4xfce4-terminalcliemulatormore
linux

Problem

How to use the xfce4-terminal command: The XFCE4 terminal emulator. More information: <https://docs.xfce.org/apps/xfce4-terminal/start>.

Solution

xfce4-terminal — The XFCE4 terminal emulator. More information: <https://docs.xfce.org/apps/xfce4-terminal/start>.

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 "{{command1}}" --tab --command "{{command2}}"

Code Snippets

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

Context

tldr-pages: linux/xfce4-terminal

Revisions (0)

No revisions yet.