23 releases

0.6.3 Oct 29, 2024
0.6.0 Aug 15, 2024
0.5.4 May 27, 2024
0.5.1 Mar 7, 2024
0.1.2 Feb 12, 2023

#192 in GUI

Download history 2212/week @ 2024-07-22 4146/week @ 2024-07-29 4247/week @ 2024-08-05 5562/week @ 2024-08-12 3861/week @ 2024-08-19 3978/week @ 2024-08-26 4707/week @ 2024-09-02 5105/week @ 2024-09-09 4037/week @ 2024-09-16 3744/week @ 2024-09-23 3202/week @ 2024-09-30 2987/week @ 2024-10-07 3381/week @ 2024-10-14 3705/week @ 2024-10-21 4083/week @ 2024-10-28 4174/week @ 2024-11-04

15,663 downloads per month
Used in 24 crates (6 directly)

Apache-2.0 OR MIT

80KB
2K SLoC

global_hotkey lets you register Global HotKeys for Desktop Applications.

Platforms-supported:

  • Windows
  • macOS
  • Linux (X11 Only)

Platform-specific notes:

  • On Windows a win32 event loop must be running on the thread. It doesn't need to be the main thread but you have to create the global hotkey manager on the same thread as the event loop.
  • On macOS, an event loop must be running on the main thread so you also need to create the global hotkey manager on the main thread.

Example

use global_hotkey::{GlobalHotKeyManager, hotkey::{HotKey, Modifiers, Code}};

// initialize the hotkeys manager
let manager = GlobalHotKeyManager::new().unwrap();

// construct the hotkey
let hotkey = HotKey::new(Some(Modifiers::SHIFT), Code::KeyD);

// register it
manager.register(hotkey);

Processing global hotkey events

You can also listen for the menu events using GlobalHotKeyEvent::receiver to get events for the hotkey pressed events.

use global_hotkey::GlobalHotKeyEvent;

if let Ok(event) = GlobalHotKeyEvent::receiver().try_recv() {
    println!("{:?}", event);
}

License

Apache-2.0/MIT

Dependencies

~1–11MB
~124K SLoC