X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=c7a61b94e0a2384477236c0eb6f65f230af577d7;hb=f0e0da5bbffe4c53f628e982845eac044b5cb034;hp=39ae2a1cc9cc807d1f586f4fda1a0b469088955d;hpb=528874e2e78eea5cdfd000baa208ac1c2f2ce4a0;p=nikiroo-utils.git diff --git a/README.md b/README.md index 39ae2a1..c7a61b9 100644 --- a/README.md +++ b/README.md @@ -145,9 +145,13 @@ More Examples The examples/ folder currently contains: * A [prototype tiling window - manager](/examples/JavaTilingWindowManager.java) in less than 250 + manager](/examples/JexerTilingWindowManager.java) in less than 250 lines of code. + * A [prototype image thumbnail + viewer](/examples/JexerImageViewer.java) in less than 350 lines of + code. + jexer.demos contains official demos showing all of the existing UI controls. The demos can be run as follows: @@ -192,6 +196,43 @@ More Screenshots ![Sixel Color Wheel](/screenshots/sixel_color_wheel.png?raw=true "Sixel Color Wheel") +Terminal Support +---------------- + +The table below lists terminals tested against Jexer's ECMA48/Xterm +backend. + +| Terminal | Environment | Mouse Click | Mouse Cursor | Images | +| -------------- | ------------------ | ----------- | ------------ | ------ | +| xterm | X11 | yes | yes | yes | +| lcxterm(3) | CLI, Linux console | yes | yes | no | +| rxvt-unicode | X11 | yes | yes | no | +| alacritty(3) | X11 | yes | yes | no | +| gnome-terminal | X11 | yes | yes | no | +| xfce4-terminal | X11 | yes | yes | no | +| mlterm | X11 | yes | yes | no(5) | +| aminal(3) | X11 | yes | no | no | +| konsole | X11 | yes | no | no | +| yakuake | X11 | yes | no | no | +| screen | CLI | no(1) | no | no(2) | +| tmux | CLI | no(1) | no | no | +| putty | X11, Windows | yes | no | no(2) | +| Linux | Linux console | no | no | no(2) | +| qodem(3) | CLI, Linux console | yes | yes(4) | no | +| qodem-x11(3) | X11 | yes | no | no | + +1 - Passes mouse to its host terminal, so will support mouse if the +host terminal does. + +2 - Also fails to filter out sixel data, leaving garbage on screen. + +3 - Latest in repository. + +4 - Requires TERM=xterm-1003 before starting. + +5 - Opening image crashes terminal. + + System Properties -----------------