https://github.com/lxde/lxterminal
VTE terminal emulator written in GTK
https://github.com/lxde/lxterminal
gtk lxde terminal terminal-emulators vte
Last synced: about 1 year ago
JSON representation
VTE terminal emulator written in GTK
- Host: GitHub
- URL: https://github.com/lxde/lxterminal
- Owner: lxde
- License: gpl-2.0
- Created: 2014-11-05T08:46:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-03-27T18:25:48.000Z (about 1 year ago)
- Last Synced: 2025-03-27T19:33:24.578Z (about 1 year ago)
- Topics: gtk, lxde, terminal, terminal-emulators, vte
- Language: C
- Size: 2.07 MB
- Stars: 170
- Watchers: 21
- Forks: 58
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-ricing - Lxterminal - VTE terminal emulator written in GTK. (c) (Packages / Terminals)
README
# LXTerminal
LXTerminal is a VTE-based terminal emulator with support for multiple tabs. It
is completely desktop-independent and does not have any unnecessary
dependencies. In order to reduce memory usage and increase the performance all
instances of the terminal are sharing a single process.
## Building and installation
### Dependencies
This dependency is listed as the package name used in Debian. If your
distribution is neither Debian nor its derivatives, you could find equivalents
for your target distribution.
Basic requirements for building:
* libglib2.0-dev
* libgtk2.0-dev
* libvte-dev
* autotools-dev
* intltool
For generating man pages (`./configure --enable-man`):
* xsltproc
* libxml2-utils
* docbook-xml
* docbook-xsl
### Building on Debian, Ubuntu or their derivatives from git
You may try:
```
# Install tools and build dependencies
sudo apt install git xsltproc libxml2-utils docbook-xml docbook-xsl
sudo apt build-dep lxterminal
# Get the source code from git
git clone https://github.com/lxde/lxterminal.git
cd lxterminal
# Build and install
./autogen.sh
./configure --enable-man
make
sudo make install
```
Note that if you get the message `E: You must put some 'source' URIs in your
sources.list`, it means you need to add `deb-src` URI into
`/etc/apt/sources.list` to find the build dependencies. Try duplicating the
URI of the main repository and replace `deb` with `deb-src`.