├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── make.cmd └── src ├── actions.json ├── sharex.ico ├── sharex.ini └── sharex.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/README.md -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/make.cmd -------------------------------------------------------------------------------- /src/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/src/actions.json -------------------------------------------------------------------------------- /src/sharex.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/src/sharex.ico -------------------------------------------------------------------------------- /src/sharex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/src/sharex.ini -------------------------------------------------------------------------------- /src/sharex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuhrmann/keypirinha-sharex/HEAD/src/sharex.py --------------------------------------------------------------------------------