killwort / myhotkey

A simple Windows hotkey application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

myhotkey

Windows Shell allows a hotkey to be associated with an application or action.

Unfortunately there is often a delay of 3 seconds between pressing the hotkey combination and the associated action. The reason is explained here.

This application bypasses the Windows Shell and executes applications and other shell actions on pre-configured hotkey combinations.

The end result is immediate reaction on pressed hot keys.

Configuration

The application has no GUI; it is configured via a config file myhotkey.conf which is loaded from the application's startup directory.

The config file looks like this:

# myhotkey.conf - configuration file for myhotkey
#
# Format:
# Modifiers [TAB] Hotkey [TAB] Executable [TAB] Work Dir [TAB] Params
# Where Modifiers = letters C,A,S,W corresponding to Ctrl, Alt, Shift, Win
#
# Notes:
# * no spaces to separate columns, use the TAB character,
# * use '-' to skip a column, '#' to skip a line
# * Hotkey might be defined as a normal character (0-9a-z) or as virtual 
#   key code - start it with ~ and put decimal code afterwards, e.g. ~112 means VK_F1
#   see https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
#
CA	C	calc
CA	Z	cmd	%USERPROFILE%
CA	D	bash	%USERPROFILE%
CA	O	-	-	rundll32 shell32.dll,Control_RunDLL sysdm.cpl
CS	~112	iexplore

Building

The application can be build with Visual Studio 2015 or later or with Mingw32 using the provided build script.

Installation

  • Build or download the executable
  • Unzip the application somewhere
  • Add a shortcut to myhotkey.exe in the Startup folder (Start -> Run, type shell:startup)
  • Execute the shortcut

Known issues

The main window of UWP apps like the calculator cannot be detected, which results in a new instance being started for every hotkey press.

About

A simple Windows hotkey application

License:MIT License


Languages

Language:C 97.8%Language:Batchfile 2.2%