From 0332779d6a7e52892cfeee8174468dd53cd9059c Mon Sep 17 00:00:00 2001 From: Leonid Plyushch Date: Fri, 4 Oct 2019 23:50:46 +0300 Subject: [PATCH] update readme --- README.md | 63 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 40 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 8400e47d..3c865508 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,49 @@ +# Termux application + [![Build status](https://api.cirrus-ci.com/github/termux/termux-app.svg?branch=master)](https://cirrus-ci.com/termux/termux-app) [![Join the chat at https://gitter.im/termux/termux](https://badges.gitter.im/termux/termux.svg)](https://gitter.im/termux/termux) +[Termux](https://termux.com) is an Android terminal application and Linux environment. -Termux app -========== +- [Termux on Google Play Store](https://play.google.com/store/apps/details?id=com.termux) +- [Termux on F-Droid](https://f-droid.org/repository/browse/?fdid=com.termux) +- [Termux Reddit community](https://reddit.com/r/termux) +- [Termux Wiki](https://wiki.termux.com/wiki/) +- [Termux Twitter](http://twitter.com/termux/) -[Termux](https://termux.com) is an Android terminal app and Linux environment. +Note that this repository is for the app itself (the user interface and the +terminal emulation). For the packages installable inside the app, see +[termux/termux-packages](https://github.com/termux/termux-packages) -* [Termux on Google Play Store](https://play.google.com/store/apps/details?id=com.termux) -* [Termux on F-Droid](https://f-droid.org/repository/browse/?fdid=com.termux) -* [Termux Google+ community](http://termux.com/community/) -* [Termux Wiki](https://wiki.termux.com/wiki/) -* [Termux Twitter](http://twitter.com/termux/) +## Terminal resources -Note that this repository is for the app itself (the user interface and the terminal emulation). For the packages installable inside the app, see [termux/termux-packages](https://github.com/termux/termux-packages) +- [XTerm control sequences](http://invisible-island.net/xterm/ctlseqs/ctlseqs.html) +- [vt100.net](http://vt100.net/) +- [Terminal codes (ANSI and terminfo equivalents)](http://wiki.bash-hackers.org/scripting/terminalcodes) -Terminal resources -================== -* [XTerm control sequences](http://invisible-island.net/xterm/ctlseqs/ctlseqs.html) -* [vt100.net](http://vt100.net/) -* [Terminal codes (ANSI and terminfo equivalents)](http://wiki.bash-hackers.org/scripting/terminalcodes) +## Terminal emulators -Terminal emulators -================== -* VTE (libvte): Terminal emulator widget for GTK+, mainly used in gnome-terminal. [Source](https://github.com/GNOME/vte), [Open Issues](https://bugzilla.gnome.org/buglist.cgi?quicksearch=product%3A%22vte%22+), and [All (including closed) issues](https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&chfield=resolution&chfieldfrom=-2000d&chfieldvalue=FIXED&product=vte&resolution=FIXED). -* iTerm 2: OS X terminal application. [Source](https://github.com/gnachman/iTerm2), [Issues](https://gitlab.com/gnachman/iterm2/issues) and [Documentation](http://www.iterm2.com/documentation.html) (which includes [iTerm2 proprietary escape codes](http://www.iterm2.com/documentation-escape-codes.html)). -* Konsole: KDE terminal application. [Source](https://projects.kde.org/projects/kde/applications/konsole/repository), in particular [tests](https://projects.kde.org/projects/kde/applications/konsole/repository/revisions/master/show/tests), [Bugs](https://bugs.kde.org/buglist.cgi?bug_severity=critical&bug_severity=grave&bug_severity=major&bug_severity=crash&bug_severity=normal&bug_severity=minor&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole) and [Wishes](https://bugs.kde.org/buglist.cgi?bug_severity=wishlist&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole). -* hterm: JavaScript terminal implementation from Chromium. [Source](https://github.com/chromium/hterm), including [tests](https://github.com/chromium/hterm/blob/master/js/hterm_vt_tests.js), and [Google group](https://groups.google.com/a/chromium.org/forum/#!forum/chromium-hterm). -* xterm: The grandfather of terminal emulators. [Source](http://invisible-island.net/datafiles/release/xterm.tar.gz). -* Connectbot: Android SSH client. [Source](https://github.com/connectbot/connectbot) -* Android Terminal Emulator: Android terminal app which Termux terminal handling is based on. Inactive. [Source](https://github.com/jackpal/Android-Terminal-Emulator). +- VTE (libvte): Terminal emulator widget for GTK+, mainly used in gnome-terminal. + [Source](https://github.com/GNOME/vte), [Open Issues](https://bugzilla.gnome.org/buglist.cgi?quicksearch=product%3A%22vte%22+), + and [All (including closed) issues](https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&chfield=resolution&chfieldfrom=-2000d&chfieldvalue=FIXED&product=vte&resolution=FIXED). + +- iTerm 2: OS X terminal application. [Source](https://github.com/gnachman/iTerm2), + [Issues](https://gitlab.com/gnachman/iterm2/issues) and [Documentation](http://www.iterm2.com/documentation.html) + (which includes [iTerm2 proprietary escape codes](http://www.iterm2.com/documentation-escape-codes.html)). + +- Konsole: KDE terminal application. [Source](https://projects.kde.org/projects/kde/applications/konsole/repository), + in particular [tests](https://projects.kde.org/projects/kde/applications/konsole/repository/revisions/master/show/tests), + [Bugs](https://bugs.kde.org/buglist.cgi?bug_severity=critical&bug_severity=grave&bug_severity=major&bug_severity=crash&bug_severity=normal&bug_severity=minor&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole) + and [Wishes](https://bugs.kde.org/buglist.cgi?bug_severity=wishlist&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole). + +- hterm: JavaScript terminal implementation from Chromium. [Source](https://github.com/chromium/hterm), + including [tests](https://github.com/chromium/hterm/blob/master/js/hterm_vt_tests.js), + and [Google group](https://groups.google.com/a/chromium.org/forum/#!forum/chromium-hterm). + +- xterm: The grandfather of terminal emulators. + [Source](http://invisible-island.net/datafiles/release/xterm.tar.gz). + +- Connectbot: Android SSH client. [Source](https://github.com/connectbot/connectbot) + +- Android Terminal Emulator: Android terminal app which Termux terminal handling + is based on. Inactive. [Source](https://github.com/jackpal/Android-Terminal-Emulator).