├── .gitignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── license.txt ├── maim.1 ├── modules ├── FindGLM.cmake ├── FindSLOP.cmake ├── FindWebP.cmake ├── FindXComposite.cmake ├── FindXFixes.cmake ├── FindXRandr.cmake └── FindXRender.cmake └── src ├── cxxopts.hpp ├── image.cpp ├── image.hpp ├── main.cpp ├── x.cpp └── x.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/license.txt -------------------------------------------------------------------------------- /maim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/maim.1 -------------------------------------------------------------------------------- /modules/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindGLM.cmake -------------------------------------------------------------------------------- /modules/FindSLOP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindSLOP.cmake -------------------------------------------------------------------------------- /modules/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindWebP.cmake -------------------------------------------------------------------------------- /modules/FindXComposite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindXComposite.cmake -------------------------------------------------------------------------------- /modules/FindXFixes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindXFixes.cmake -------------------------------------------------------------------------------- /modules/FindXRandr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindXRandr.cmake -------------------------------------------------------------------------------- /modules/FindXRender.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/modules/FindXRender.cmake -------------------------------------------------------------------------------- /src/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/cxxopts.hpp -------------------------------------------------------------------------------- /src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/image.cpp -------------------------------------------------------------------------------- /src/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/image.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/x.cpp -------------------------------------------------------------------------------- /src/x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naelstrof/maim/HEAD/src/x.hpp --------------------------------------------------------------------------------