├── .gitignore ├── CMakeLists.txt ├── COPYING.GPL3 ├── README.md ├── egfullscreenclient.cpp ├── egfullscreenclient.h ├── eglauncher.cpp ├── eglauncher.h ├── egmde-launch.sh ├── egmde-terminal ├── egmde.cpp ├── egmde.desktop ├── egshellcommands.cpp ├── egshellcommands.h ├── egwallpaper.cpp ├── egwallpaper.h ├── egwindowmanager.cpp ├── egwindowmanager.h ├── printer.cpp └── printer.h /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build* 3 | cmake* 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/COPYING.GPL3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/README.md -------------------------------------------------------------------------------- /egfullscreenclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egfullscreenclient.cpp -------------------------------------------------------------------------------- /egfullscreenclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egfullscreenclient.h -------------------------------------------------------------------------------- /eglauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/eglauncher.cpp -------------------------------------------------------------------------------- /eglauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/eglauncher.h -------------------------------------------------------------------------------- /egmde-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egmde-launch.sh -------------------------------------------------------------------------------- /egmde-terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egmde-terminal -------------------------------------------------------------------------------- /egmde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egmde.cpp -------------------------------------------------------------------------------- /egmde.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egmde.desktop -------------------------------------------------------------------------------- /egshellcommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egshellcommands.cpp -------------------------------------------------------------------------------- /egshellcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egshellcommands.h -------------------------------------------------------------------------------- /egwallpaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egwallpaper.cpp -------------------------------------------------------------------------------- /egwallpaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egwallpaper.h -------------------------------------------------------------------------------- /egwindowmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egwindowmanager.cpp -------------------------------------------------------------------------------- /egwindowmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/egwindowmanager.h -------------------------------------------------------------------------------- /printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/printer.cpp -------------------------------------------------------------------------------- /printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanGriffiths/egmde/HEAD/printer.h --------------------------------------------------------------------------------