├── .cirrus.yml ├── .clang-tidy ├── .github └── workflows │ └── full-check.yml ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── FAQ.md ├── Makefile.am ├── README.md ├── TODO.md ├── autogen.sh ├── configure.ac ├── deps.pc ├── doc ├── UPDATE-CHECK ├── scrot.png └── scrot.xcf ├── etc ├── bash-completion │ └── scrot └── zsh-completion │ └── _scrot ├── man ├── create-man.sh ├── scrot.1 └── scrot.txt └── src ├── Makefile.am ├── note.c ├── note.h ├── options.c ├── options.h ├── scrot.c ├── scrot.h ├── scrot_selection.c ├── scrot_selection.h ├── selection_classic.c ├── selection_classic.h ├── selection_edge.c ├── selection_edge.h ├── util.c └── util.h /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/full-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/.github/workflows/full-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/ChangeLog -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/FAQ.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/TODO.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/configure.ac -------------------------------------------------------------------------------- /deps.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/deps.pc -------------------------------------------------------------------------------- /doc/UPDATE-CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/doc/UPDATE-CHECK -------------------------------------------------------------------------------- /doc/scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/doc/scrot.png -------------------------------------------------------------------------------- /doc/scrot.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/doc/scrot.xcf -------------------------------------------------------------------------------- /etc/bash-completion/scrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/etc/bash-completion/scrot -------------------------------------------------------------------------------- /etc/zsh-completion/_scrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/etc/zsh-completion/_scrot -------------------------------------------------------------------------------- /man/create-man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/man/create-man.sh -------------------------------------------------------------------------------- /man/scrot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/man/scrot.1 -------------------------------------------------------------------------------- /man/scrot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/man/scrot.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/note.c -------------------------------------------------------------------------------- /src/note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/note.h -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/options.h -------------------------------------------------------------------------------- /src/scrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/scrot.c -------------------------------------------------------------------------------- /src/scrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/scrot.h -------------------------------------------------------------------------------- /src/scrot_selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/scrot_selection.c -------------------------------------------------------------------------------- /src/scrot_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/scrot_selection.h -------------------------------------------------------------------------------- /src/selection_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/selection_classic.c -------------------------------------------------------------------------------- /src/selection_classic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/selection_classic.h -------------------------------------------------------------------------------- /src/selection_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/selection_edge.c -------------------------------------------------------------------------------- /src/selection_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/selection_edge.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/scrot/HEAD/src/util.h --------------------------------------------------------------------------------