Created
November 21, 2021 20:12
-
-
Save fhemberger/57ccfc6d228cfb37552cdfb11a09445c to your computer and use it in GitHub Desktop.
Hammerspoon: Switch layout when USB keyboard is plugged in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local usbLogger = hs.logger.new('usb', 'debug') | |
function configureKeyboard(data) | |
-- Uncomment the "usbLogger" line below, plug in the USB keyboard and update the USB vendor and product ID | |
local isKeyboardAffected = data.vendorID == 9610 and data.productID == 89 | |
-- usbLogger.df("eventType %s, pname %s, vname %s, vId %s, pId %s, keyboardAffected %s", data.eventType, data.productName, data.vendorName, data.vendorID, data.productID, isKeyboardAffected) | |
if isKeyboardAffected and data.eventType == "added" then | |
hs.keycodes.setLayout("U.S.") | |
end | |
if isKeyboardAffected and data.eventType == "removed" then | |
hs.keycodes.setLayout("German") | |
end | |
end | |
local keyboardWatcher = hs.usb.watcher.new(configureKeyboard) | |
keyboardWatcher:start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment