Text mode window environment. A "retro" program for embedded or remote systems, that doubles as X11 terminal and text-mode equivalent of VNC server
C Shell Makefile C++ M4
Switch branches/tags
Nothing to show
Latest commit a877205 Jul 16, 2017 @cosmos72 cosmos72 hw_gfx and hw_x11: use Xutf8LookupString() if available, otherwise fa…
…ll back on XmbLookupString()
Permalink
Failed to load latest commit information.
TODOS version 0.5.2 Dec 1, 2007
admin hw_tty: various fixes to properly recognize cursor keys, Home and End… Dec 24, 2016
clients added configure option to ignore dlopen() and use instead libtool lt_… Dec 18, 2016
conf cleanup Nov 27, 2016
contrib added AM_MAINTAINER_MODE to configure.ac - should fix issue #11 Dec 17, 2016
docs added AM_MAINTAINER_MODE to configure.ac - should fix issue #11 Dec 17, 2016
fonts version 0.5.2 Dec 1, 2007
include server/socket.c: fixed server implementation of Tw_DeletObj - it neve… Jan 9, 2017
libs libTutf: further reduced memory usage Jan 2, 2017
m4 improved warning "cannot run ldconfig now..." Dec 18, 2016
scripts cleaned up libTutf Dec 31, 2016
server hw_gfx and hw_x11: use Xutf8LookupString() if available, otherwise fa… Jul 16, 2017
themes added AM_MAINTAINER_MODE to configure.ac - should fix issue #11 Dec 17, 2016
.gitignore twstart: removed dependency from GNU 'xargs' and added explicit #!/bi… Jan 10, 2017
BUGS updated BUGS Dec 10, 2016
COPYING version 0.2.6 Nov 29, 2002
COPYING.LIB version 0.4.5 Oct 25, 2002
Changelog.txt Removed support for non-Unicode builds. From now on, twin can ONLY be… Jul 2, 2016
INSTALL * commented "GlobalFlags +TerminalsUtf8" in distributes system.twinrc Dec 13, 2016
Makefile.am removed non-ASCII characters from sources Dec 18, 2016
Makefile.in cleaned up libTutf Dec 31, 2016
README updated README for Mac OS X support, updated Menu -> = -> About with … Dec 30, 2016
README.git * commented "GlobalFlags +TerminalsUtf8" in distributes system.twinrc Dec 13, 2016
README.porting version 0.4.4 Jul 6, 2002
acinclude.m4 improved compiling and loading modules with libtool; various autoconf… Dec 3, 2016
aclocal.m4 added AM_MAINTAINER_MODE to configure.ac - should fix issue #11 Dec 17, 2016
configure increased version number to 0.7.4 Dec 30, 2016
configure.ac increased version number to 0.7.4 Dec 30, 2016
missing_checks added some more missing checks to ./configure Dec 4, 2016
system.twenvrc.sh version 0.6.1 Feb 22, 2009
system.twinrc * commented "GlobalFlags +TerminalsUtf8" in distributes system.twinrc Dec 13, 2016
twin-current.lsm version 0.5.0 Jun 19, 2003

README

--------------------------------------------------------------
Twin - a Textmode WINdow environment, by Massimiliano Ghilardi
--------------------------------------------------------------

Version 0.6.3

Twin is a windowing environment with mouse support, window manager,
terminal emulator and networked clients, all inside a text display.

It supports a variety of displays:
* plain text terminals (any termcap/ncurses compatible terminal,
  Linux console, twin's own terminal emulator);
* X11, where it can be used as a multi-window xterm;
* itself (you can display a twin on another twin);
* twdisplay, a general network-transparent display client, used
  to attach/detach more displays on-the-fly.

Currently, twin is tested on Linux (i386, x86_64, ARM, ARM64, PowerPC, Alpha, Sparc),
on Mac OS X (x86_64) and on FreeBSD (i386, x86_64).
I had yet no chance to seriously test it on other systems.

--------------------------------------------------------------
Documentation


Twin comes with the following documentation:

README		This file.
README.git	Hints to build twin from GIT repository (for developers).
README.porting  Tips and warnings to compile twin on unsupported OSes.
COPYING		License: twin server and clients are GPL'ed software.
COPYING.LIB	Library license: libTutf, libTw, libTT are LGPL'ed.
Changelog.txt	List of all changes between the various versions of twin.
BUGS		Known bugs.
INSTALL		Quick compile/install guide.
system.twinrc	A detailed example of ~/.twinrc look-n-feel configuration file.


The docs/ subdirectory contains additional documentation:

Configure	Description of twin configuration script with the meaning
		of every single option.
Tutorial	A quite complete tour of twin features: the user interface,
		how to use twin clients, compression, attaching/detaching
		displays, fonts. It also contains installation instructions
		and some caveats for system administrators.
libTw.txt	a reference file for programmers who want to write
		twin clients (INCOMPLETE).
libTw++.txt	a reference file for programmers who want to write
		twin C++ clients (INCOMPLETE).

--------------------------------------------------------------
Getting twin


Since you are reading this README, you probably already have it,
anyway twin can be downloaded from

https://github.com/cosmos72/twin


--------------------------------------------------------------
Building and installing twin

For the impatient, it basically reduces to
  ./configure
  make
  
then run as root
  make install
  
on Linux, also remember to run as root:
  ldconfig

on FreeBSD instead, remember to run as root:
  ldconfig -R

To compile twin you need the following programs installed
on your system:
	
  * a Bourne-shell or compatible (for example bash, dash, ash...)
  
  * make (most variants are supported: GNU make, BSD make...)

  * an ANSI C compiler (for example gcc or clang)


For detailed instructions about compiling and installing twin, see the file `Tutorial',
sections 3 and 4, distributed with twin in the docs/ subdirectory.

In summary, it is STRONGLY recommended to install at least the following packages before compiling twin
(the exact names depend on the operating system or Linux distribution):

  * x11-dev      - may be named x11-devel, libx11-dev ...
  * xpm-dev      - may be named xpm-devel, libxpm-dev ...
  * ncurses-dev  - may be named ncurses-devel, libncurses-dev ...
  * zlib-dev     - may be named zlib1g-dev, zlib-devel, libzlib-dev ...

On Linux, it is STRONGLY recommended to also install the following package before compiling twin:

  * gpm-dev      - may be named gpm-devel, libgpm-dev ...

For a discussion about MANUALLY configuring twin (almost never necessary),
see the help file `Configure', again in the docs/ subdirectory.
-- WARNING: if you manually enable options that were disabled by `./configure',
build will almost certainly fail! --

--------------------------------------------------------------
Other topics:

See the rest of the documentation.


Greetings,

Massimiliano Ghilardi