@@ -16,46 +16,47 @@ A simple Linux/X11 VT220 terminal emulator featuring:
16
16
17
17
# Quickstart #
18
18
19
- Build terminol (this requires pcre, xkbcommon, xcb, pango, cairo and a C++11 compiler).
19
+ Obtain the terminol source code, either by downloading and unpacking a package file,
20
+ or by cloning the repository:
20
21
21
- ./configure ./build-dir debug gnu
22
- cd build-dir
22
+ git clone https://github.com/bagnose/terminol.git
23
+ cd terminol
24
+
25
+ Build terminol (this requires pcre, xkbcommon, xcb, pango, cairo and a C++11 compiler):
26
+
27
+ # Establish a debug/GCC build directory (run 'configure' without any arguments
28
+ # to see other options):
29
+ ./configure ../terminol-debug-gnu debug gnu
30
+ cd ../terminol-debug-gnu
23
31
make
24
32
25
33
Create a configuration file (see doc/sample-config).
26
34
At the bare minimum you need to specify the font:
27
35
28
- mkdir ~/.config/terminol
36
+ mkdir -p ~/.config/terminol
29
37
cat << EOF > ~/.config/terminol/config
30
38
set font-name "Meslo LG M"
31
39
set font-size 14
32
40
EOF
33
41
34
- Launch terminol
42
+ Launch terminol:
35
43
36
44
# Launch a standalone window:
37
45
./dist/bin/terminol
38
46
39
- # or launch the server/daemon
47
+ # or launch the server/daemon:
40
48
./dist/bin/terminols
41
49
42
50
# and start windows with:
43
51
./dist/bin/terminolc
44
52
45
- Install terminol
53
+ Install terminol:
46
54
55
+ # This will copy the terminol binaries into ${INSTALLDIR}/bin:
47
56
make INSTALLDIR=/usr/local install
48
57
49
- # TODO #
58
+ # Upcoming Features #
50
59
51
60
- highlighting and actions for user defined (regex) patterns
52
61
53
62
- reverse search
54
-
55
- # FAQ #
56
-
57
- * Why another terminal emulator?
58
-
59
- * How do I write a config file?
60
-
61
- See the annotated doc/sample-config
0 commit comments