├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── config.h.in ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in └── fbterm.1.in ├── im ├── 256colors.png ├── Makefile.am ├── Makefile.in ├── example.c ├── imapi.c ├── imapi.h ├── keycode.c └── keycode.h ├── install-sh ├── missing ├── src ├── Makefile.am ├── Makefile.in ├── fbconfig.cpp ├── fbconfig.h ├── fbdev.cpp ├── fbdev.h ├── fbio.cpp ├── fbio.h ├── fbshell.cpp ├── fbshell.h ├── fbshellman.cpp ├── fbshellman.h ├── fbterm.cpp ├── fbterm.h ├── font.cpp ├── font.h ├── immessage.h ├── improxy.cpp ├── improxy.h ├── input.cpp ├── input.h ├── input_key.h ├── lib │ ├── Makefile.am │ ├── Makefile.in │ ├── charsetmap.cpp │ ├── instance.h │ ├── io.cpp │ ├── io.h │ ├── shell.cpp │ ├── shell.h │ ├── type.h │ ├── vterm.cpp │ ├── vterm.h │ ├── vterm_action.cpp │ ├── vterm_states.cpp │ └── wcwidth.cpp ├── mouse.cpp ├── mouse.h ├── screen.cpp ├── screen.h ├── screen_render.cpp ├── signalfd.h ├── vbe.h ├── vesadev.cpp └── vesadev.h └── terminfo ├── Makefile.am ├── Makefile.in └── fbterm /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src im terminfo doc 2 | -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/README -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/fbterm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/doc/fbterm.1.in -------------------------------------------------------------------------------- /im/256colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/256colors.png -------------------------------------------------------------------------------- /im/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/Makefile.am -------------------------------------------------------------------------------- /im/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/Makefile.in -------------------------------------------------------------------------------- /im/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/example.c -------------------------------------------------------------------------------- /im/imapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/imapi.c -------------------------------------------------------------------------------- /im/imapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/imapi.h -------------------------------------------------------------------------------- /im/keycode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/keycode.c -------------------------------------------------------------------------------- /im/keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/im/keycode.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/fbconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbconfig.cpp -------------------------------------------------------------------------------- /src/fbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbconfig.h -------------------------------------------------------------------------------- /src/fbdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbdev.cpp -------------------------------------------------------------------------------- /src/fbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbdev.h -------------------------------------------------------------------------------- /src/fbio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbio.cpp -------------------------------------------------------------------------------- /src/fbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbio.h -------------------------------------------------------------------------------- /src/fbshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbshell.cpp -------------------------------------------------------------------------------- /src/fbshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbshell.h -------------------------------------------------------------------------------- /src/fbshellman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbshellman.cpp -------------------------------------------------------------------------------- /src/fbshellman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbshellman.h -------------------------------------------------------------------------------- /src/fbterm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbterm.cpp -------------------------------------------------------------------------------- /src/fbterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/fbterm.h -------------------------------------------------------------------------------- /src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/font.cpp -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/font.h -------------------------------------------------------------------------------- /src/immessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/immessage.h -------------------------------------------------------------------------------- /src/improxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/improxy.cpp -------------------------------------------------------------------------------- /src/improxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/improxy.h -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/input.h -------------------------------------------------------------------------------- /src/input_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/input_key.h -------------------------------------------------------------------------------- /src/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/Makefile.am -------------------------------------------------------------------------------- /src/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/Makefile.in -------------------------------------------------------------------------------- /src/lib/charsetmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/charsetmap.cpp -------------------------------------------------------------------------------- /src/lib/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/instance.h -------------------------------------------------------------------------------- /src/lib/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/io.cpp -------------------------------------------------------------------------------- /src/lib/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/io.h -------------------------------------------------------------------------------- /src/lib/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/shell.cpp -------------------------------------------------------------------------------- /src/lib/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/shell.h -------------------------------------------------------------------------------- /src/lib/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/type.h -------------------------------------------------------------------------------- /src/lib/vterm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/vterm.cpp -------------------------------------------------------------------------------- /src/lib/vterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/vterm.h -------------------------------------------------------------------------------- /src/lib/vterm_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/vterm_action.cpp -------------------------------------------------------------------------------- /src/lib/vterm_states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/vterm_states.cpp -------------------------------------------------------------------------------- /src/lib/wcwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/lib/wcwidth.cpp -------------------------------------------------------------------------------- /src/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/mouse.cpp -------------------------------------------------------------------------------- /src/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/mouse.h -------------------------------------------------------------------------------- /src/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/screen.cpp -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/screen_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/screen_render.cpp -------------------------------------------------------------------------------- /src/signalfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/signalfd.h -------------------------------------------------------------------------------- /src/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/vbe.h -------------------------------------------------------------------------------- /src/vesadev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/vesadev.cpp -------------------------------------------------------------------------------- /src/vesadev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/src/vesadev.h -------------------------------------------------------------------------------- /terminfo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/terminfo/Makefile.am -------------------------------------------------------------------------------- /terminfo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/terminfo/Makefile.in -------------------------------------------------------------------------------- /terminfo/fbterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenprater/fbterm/HEAD/terminfo/fbterm --------------------------------------------------------------------------------