1GNOME-TERMINAL(1) User Commands GNOME-TERMINAL(1)
2
3
4
6 gnome-terminal - A terminal emulator for GNOME
7
9 gnome-terminal [OPTION...] [-- PROGRAM [ARG...]]
10
12 gnome-terminal is a terminal emulator application for accessing a UNIX
13 shell environment which can be used to run programs available on your
14 system. It supports several profiles, multiple tabs and implements
15 several keyboard shortcuts.
16
18 --help, -h
19 Show a brief overview of all the options.
20
21 --help-all
22 Show all the options in detail.
23
24 --help-gtk
25 Show all the GTK options.
26
27 --help-terminal
28 Show all the options to select between new terminal tabs or
29 windows.
30
31 --help-terminal-options
32 Show all the options to change the attributes of terminals
33 regardless of whether they are in separate tabs or windows.
34
35 --help-window-options
36 Show all the options to change the attributes of windows containing
37 terminals.
38
39 --load-config=FILE
40 Restore the application to a previously saved state by loading it
41 from a configuration file.
42
43 --preferences
44 Show the preferences window.
45
46 --print-environment, -p
47 Print the environment variables to interact with newly created
48 terminals.
49
50 --quiet, -q
51 Suppress diagnostics.
52
53 --verbose, -v
54 Increase diagnostic verbosity.
55
56 --tab
57 Open a new tab containing a terminal in the last-opened window with
58 the default profile.
59
60 --window
61 Open a new window with a tab containing a terminal with the default
62 profile.
63
64 --command, -e=COMMAND
65 Split the argument to this option into a program and arguments in
66 the same way a shell would, and execute the resulting command-line
67 inside the terminal.
68
69 This option is deprecated. Instead, use -- to terminate the
70 options, and put the program and arguments to execute after it: for
71 example, instead of gnome-terminal -e "python3 -q", prefer to use
72 gnome-terminal -- python3 -q.
73
74 Note that the COMMAND is not run via a shell: it is split into
75 words and executed as a program. If shell syntax is required, use
76 the form gnome-terminal -- sh -c '...'.
77
78 --execute PROGRAM [ARGS], -x PROGRAM [ARGS]
79 Stop parsing options at this point, and interpret all subsequent
80 options as a program and arguments to execute inside the terminal.
81
82 This option is deprecated: use -- instead. For example, instead of
83 gnome-terminal -x python3 -q, prefer to use gnome-terminal --
84 python3 -q.
85
86 --fd=FD
87 Forward file descriptor.
88
89 --profile=PROFILE-NAME
90 Use the given profile instead of the default profile.
91
92 --title, -t=TITLE
93 Set the initial terminal title.
94
95 --wait
96 Wait until the terminal's child exits.
97
98 --working-directory=DIRNAME
99 Set the terminal's working directory.
100
101 --zoom=ZOOM
102 Set the terminal's zoom factor. 1.0 is normal size.
103
104 --active
105 Set the last specified tab as the active one in its window.
106
107 --full-screen
108 Full-screen the window.
109
110 --geometry=GEOMETRY
111 Set the window size as COLSxROWS+X+Y. For example, 80x24 or
112 80x24+200+200.
113
114 --hide-menubar
115 Turn off the menubar for the window.
116
117 --show-menubar
118 Turn on the menubar for the window.
119
120 --maximize
121 Maximize the window.
122
123 --role=ROLE
124 Set the X window role.
125
126 --class=CLASS
127 Program class as used by the window manager.
128
129 --display=DISPLAY
130 X display to use.
131
132 --g-fatal-warnings
133 Make all warnings fatal.
134
135 --gdk-debug=FLAGS
136 GDK debugging flags to set.
137
138 --gdk-no-debug=FLAGS
139 GDK debugging flags to unset.
140
141 --gtk-debug=FLAGS
142 GTK debugging flags to set.
143
144 --gtk-no-debug=FLAGS
145 GTK debugging flags to unset.
146
147 --gtk-module=MODULES
148 Load additional GTK modules.
149
150 --name=NAME
151 Program name as used by the window manager.
152
154 Please read https://wiki.gnome.org/Apps/Terminal/ReportingBugs on how
155 to report bugs.
156
158 To run a terminal containing an interactive Python prompt:
159
160 gnome-terminal --title=Python -- python3 -q
161
162
163 To interpret shell syntax in a terminal, either write it in a separate
164 shell script, or use sh -c:
165
166 gnome-terminal -- sh -c 'if [ "$(id -u)" = 0 ]; then ...'
167
168
169
171 For further information, visit the website
172 https://wiki.gnome.org/Apps/Terminal. There's a list of frequently
173 asked questions at https://wiki.gnome.org/Apps/Terminal/FAQ.
174
175
176
177GNOME June 2020 GNOME-TERMINAL(1)