├── .default ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile ├── Makefile.am ├── NEWS ├── README ├── TODO ├── autogen.sh ├── configure ├── configure.ac ├── data ├── Makefile ├── Makefile.am ├── lilyterm.1 ├── lilyterm.conf ├── lilyterm.desktop ├── lilyterm.png ├── lilyterm.xml └── lilyterm.xpm ├── po ├── Makefile ├── POTFILES.in ├── de.po ├── es.po ├── fr.po ├── it.po ├── lilyterm.pot ├── nl.po ├── pl.po ├── pt_BR.po ├── ru.po ├── sk.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po └── src ├── Makefile ├── Makefile.am ├── console.c ├── console.h ├── data.h ├── dialog.c ├── dialog.h ├── font.c ├── font.h ├── lilyterm.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── misc.c ├── misc.h ├── notebook.c ├── notebook.h ├── pagename.c ├── pagename.h ├── profile.c ├── profile.h ├── property.c ├── property.h ├── socket.c ├── socket.h ├── unit_test.sh ├── window.c └── window.h /.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/.default -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po data 2 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/lilyterm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.1 -------------------------------------------------------------------------------- /data/lilyterm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.conf -------------------------------------------------------------------------------- /data/lilyterm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.desktop -------------------------------------------------------------------------------- /data/lilyterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.png -------------------------------------------------------------------------------- /data/lilyterm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.xml -------------------------------------------------------------------------------- /data/lilyterm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/data/lilyterm.xpm -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/it.po -------------------------------------------------------------------------------- /po/lilyterm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/lilyterm.pot -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/console.c -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/console.h -------------------------------------------------------------------------------- /src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/data.h -------------------------------------------------------------------------------- /src/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/dialog.c -------------------------------------------------------------------------------- /src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/dialog.h -------------------------------------------------------------------------------- /src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/font.c -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/font.h -------------------------------------------------------------------------------- /src/lilyterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/lilyterm.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/main.h -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/notebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/notebook.c -------------------------------------------------------------------------------- /src/notebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/notebook.h -------------------------------------------------------------------------------- /src/pagename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/pagename.c -------------------------------------------------------------------------------- /src/pagename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/pagename.h -------------------------------------------------------------------------------- /src/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/profile.c -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/property.c -------------------------------------------------------------------------------- /src/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/property.h -------------------------------------------------------------------------------- /src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/socket.c -------------------------------------------------------------------------------- /src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/socket.h -------------------------------------------------------------------------------- /src/unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/unit_test.sh -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/window.c -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetralet/LilyTerm/HEAD/src/window.h --------------------------------------------------------------------------------