Last active
November 9, 2019 08:10
-
-
Save metalefty/60a12ccf2e9d7054864827f2696dc958 to your computer and use it in GitHub Desktop.
ダイソーのBluetoothリモートシャッターをMacでいい感じに使うやつ
This file contains hidden or 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
| #!/bin/sh | |
| while true | |
| do | |
| hidutil property \ | |
| --filter '{ "VendorID": 9354, "ProductID": 33382 }'\ | |
| --set '{ | |
| "UserKeyMapping": | |
| [{ | |
| "HIDKeyboardModifierMappingSrc":0xC000000e9, | |
| "HIDKeyboardModifierMappingDst":0x700000028}] | |
| }' | |
| sleep 1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment