Swiftpack.co - jordanbaird/KeySender as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by jordanbaird.
jordanbaird/KeySender 0.0.5
Send key events to any running application.
⭐️ 14
🕓 2 years ago
macOS
.package(url: "https://github.com/jordanbaird/KeySender.git", from: "0.0.5")

KeySender

Continuous Integration Swift Versions Release License

A simple micro package that enables you to send key events to any running application.

Install

Add the following dependency to your Package.swift file:

.package(url: "https://github.com/jordanbaird/KeySender", from: "0.0.5")

Usage

Create a key sender using one of several initializers. You can create an instance with multiple key events that will be sent in succession, a single key event, a key and some modifiers, or a string. You then call one of the send(to:) or trySend(to:) methods to send the event to a running application of your choice, or sendGlobally() to send the event to the system.

When sending to an application, as long as it can accept the keys that you send and is currently running, the effect will be the same as if the keys had been entered manually.

When sending globally, the effect will also be the same as if the keys had been entered manually.

let sender = KeySender(key: .c, modifiers: .command)
try sender.send(to: "TextEdit")

let sender = KeySender(string: "Hello")
sender.trySend(to: "TextEdit")

let sender = KeySender(key: .space, modifiers: .command)
sender.sendGlobally()

Source Stability

As KeySender is under active development, source stability is not guaranteed between releases.

License

KeySender is available under the MIT license.

GitHub

link
Stars: 14
Last commit: 15 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

KeySender 0.0.5
2 years ago

This release adds additional public APIs.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics