blob: 19ae7fcbb1907c0b38e904f557acd9d9b7d87e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
This is the MATE terminal emulator application. mate-terminal is
only the shell (menubar, prefs dialog); the terminal emulation ("stuff
in the middle") comes from the VTE widget. Remember this when you
report a bug. ;-)
MATE terminal is a fork of GNOME terminal.
How it works
===
Profiles -
all settings are stored in profiles. prefs dialog edits the current
profile
Session -
just the number of open windows/tabs and their profile is stored
per-session
Command line options -
do not overlap things that are preferences
== Install ==
In order to build this program from the source code you need git installed and
a working MATE environment, with the development tools installed
properly.
Example:
git submodule init
git submodule update --remote --recursive
./autogen.sh --prefix=/usr --sysconfdir=/etc \
--disable-static --localstatedir=/var --with-gnu-ld
make
sudo make install
|