├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cmake ├── FindGDI32.c └── FindGDI32.cmake ├── docs ├── help.txt └── shot.1 └── src ├── .gitignore ├── bitmap.c ├── bitmap.h ├── bitmap_win.c ├── bitmap_x11.c ├── grab.h ├── grab_win.c ├── grab_x11.c ├── monitor.c ├── monitor.h ├── monitor_mgr.c ├── monitor_mgr.h ├── monitor_mgr_win.c ├── monitor_mgr_x11.c ├── region.h ├── region_picker ├── active_monitor.c ├── active_monitor.h ├── active_window.h ├── active_window_win.c ├── active_window_x11.c ├── errors.h ├── interactive.h ├── interactive_common.c ├── interactive_common.h ├── interactive_win.c ├── interactive_x11.c ├── monitor.c ├── monitor.h ├── string.c ├── string.h ├── window.h ├── window_win.c └── window_x11.c └── shot.c /.gitignore: -------------------------------------------------------------------------------- 1 | waf 2 | build 3 | .lock* 4 | .waf* 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGDI32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/cmake/FindGDI32.c -------------------------------------------------------------------------------- /cmake/FindGDI32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/cmake/FindGDI32.cmake -------------------------------------------------------------------------------- /docs/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/docs/help.txt -------------------------------------------------------------------------------- /docs/shot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/docs/shot.1 -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | help.h 2 | version.h 3 | -------------------------------------------------------------------------------- /src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/bitmap.c -------------------------------------------------------------------------------- /src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/bitmap.h -------------------------------------------------------------------------------- /src/bitmap_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/bitmap_win.c -------------------------------------------------------------------------------- /src/bitmap_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/bitmap_x11.c -------------------------------------------------------------------------------- /src/grab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/grab.h -------------------------------------------------------------------------------- /src/grab_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/grab_win.c -------------------------------------------------------------------------------- /src/grab_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/grab_x11.c -------------------------------------------------------------------------------- /src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor.c -------------------------------------------------------------------------------- /src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor.h -------------------------------------------------------------------------------- /src/monitor_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor_mgr.c -------------------------------------------------------------------------------- /src/monitor_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor_mgr.h -------------------------------------------------------------------------------- /src/monitor_mgr_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor_mgr_win.c -------------------------------------------------------------------------------- /src/monitor_mgr_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/monitor_mgr_x11.c -------------------------------------------------------------------------------- /src/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region.h -------------------------------------------------------------------------------- /src/region_picker/active_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/active_monitor.c -------------------------------------------------------------------------------- /src/region_picker/active_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/active_monitor.h -------------------------------------------------------------------------------- /src/region_picker/active_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/active_window.h -------------------------------------------------------------------------------- /src/region_picker/active_window_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/active_window_win.c -------------------------------------------------------------------------------- /src/region_picker/active_window_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/active_window_x11.c -------------------------------------------------------------------------------- /src/region_picker/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/errors.h -------------------------------------------------------------------------------- /src/region_picker/interactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/interactive.h -------------------------------------------------------------------------------- /src/region_picker/interactive_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/interactive_common.c -------------------------------------------------------------------------------- /src/region_picker/interactive_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/interactive_common.h -------------------------------------------------------------------------------- /src/region_picker/interactive_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/interactive_win.c -------------------------------------------------------------------------------- /src/region_picker/interactive_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/interactive_x11.c -------------------------------------------------------------------------------- /src/region_picker/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/monitor.c -------------------------------------------------------------------------------- /src/region_picker/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/monitor.h -------------------------------------------------------------------------------- /src/region_picker/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/string.c -------------------------------------------------------------------------------- /src/region_picker/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/string.h -------------------------------------------------------------------------------- /src/region_picker/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/window.h -------------------------------------------------------------------------------- /src/region_picker/window_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/window_win.c -------------------------------------------------------------------------------- /src/region_picker/window_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/region_picker/window_x11.c -------------------------------------------------------------------------------- /src/shot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/shot/HEAD/src/shot.c --------------------------------------------------------------------------------