Metadata-Version: 2.1
Name: windows-hotkey-checker
Version: 0.1.9
Summary: A simple command line tool to check whether a hotkey is already registered by another program on Windows.
Project-URL: Repository, https://github.com/heathhenley/windows_hotkey_checker
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Windows Hotkey Checker
## Simple command line tool to check for registered hotkeys on Windows

This is a simple python script that checks for hotkeys that already regitstered
by other programs on Windos and prints them to the console.

It works by enumerating combinations of modifiers and keys and trying to
register them as new hotkeys. If the registration fails, it means that the
combination is already registered by another program.

## Installation

The script can be installed with pip:

    python -m pip install windows_hotkey_checker

and only uses python standard library modules, so no additional dependencies.

## Usage

Usage is simple. Just run the script with python:

    > python -m windows_hotkey_checker

There is also a Script installed in the Scripts directory of the python
installation with the shortcut "hotkeys" that you can run from the command line as:
  
      > hotkeys
