├── .gitignore ├── Makefile ├── pics ├── picture.jpeg ├── settings.png └── terminal-app.png ├── readme.md └── start.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/Makefile -------------------------------------------------------------------------------- /pics/picture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/pics/picture.jpeg -------------------------------------------------------------------------------- /pics/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/pics/settings.png -------------------------------------------------------------------------------- /pics/terminal-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/pics/terminal-app.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/readme.md -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex028502/extra-screen/HEAD/start.py --------------------------------------------------------------------------------