├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bread.cur ├── changeLog.md ├── colorPicker.py ├── devineInspiration.png ├── icon.ico ├── recycle.py ├── requirements.txt ├── screenCap.py ├── screenCap.spec ├── snapshot.py └── values.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/README.md -------------------------------------------------------------------------------- /bread.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/bread.cur -------------------------------------------------------------------------------- /changeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/changeLog.md -------------------------------------------------------------------------------- /colorPicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/colorPicker.py -------------------------------------------------------------------------------- /devineInspiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/devineInspiration.png -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/icon.ico -------------------------------------------------------------------------------- /recycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/recycle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenCap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/screenCap.py -------------------------------------------------------------------------------- /screenCap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/screenCap.spec -------------------------------------------------------------------------------- /snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/snapshot.py -------------------------------------------------------------------------------- /values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldentoaste/screenCap/HEAD/values.py --------------------------------------------------------------------------------