markdown CoolerMaster Master解决了OSX上的Pro M问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown CoolerMaster Master解决了OSX上的Pro M问题相关的知识,希望对你有一定的参考价值。
# CoolerMaster MasterKeys Pro M Problems on OSX
## 1. Numlock doesn't work: [SOURCE](http://chai.ws/how-to-make-the-numpad-work-for-the-coolermaster-quickfire-storm-tk-keyboard-on-a-mac-osx/)
- Download [ControllerMate v4.10.6](http://www.orderedbytes.com/controllermate/) (should be free).
- If a `Driver not install` pop up, re member the item in System Preferences is `Security & Privacy` - `General`, not the `General` tab.
- After installation, right click in the `Programming Items` panel - Create Programming Page.
- In the `Palette` window - select `Controller` - find `MasterKeys Pro M Single - Keyboard Numlock and Clear (Keyboard)` (not `System Control`) - drag it to the programming page.
- [NEW] In the `Palette` window - select `Controller` - select `MasterKeys Pro M Single - Keyboard` (not `System Control`) - in `Controls` section find `MasterKeys Pro M Single - Keyboard Numlock and Clear` drag it to the programming page.
- In the `Palette` window - select `Logic` - find `On/Off Gate`.
- Find `Toggle` - set `Initial/Reset Value` to `On`.
- Select `Controller` - find `MasterKeys Pro M Single - Numlock (Keyboard)` (not `System Control`) in the `LEDs` section.
- [NEW] Select `Controller` - select `MasterKeys Pro M Single - Keyboard` (not `System Control`) - find `Numlock Building Block` in the `LEDs` section.
- Drag the `Off` from one pallete to another to connect it.
- *Trick:* for some reason, if the `Toggle` palette doesn't show `OFF - ON`, cut and paste it may solve the problem.
It should look like this:
![Imgur](https://i.imgur.com/3BEnb81.png)
```
Keyboard Numlock and Clear
Off
|
Off
On/Off Gate
Off
|
Off
Toggle
On
|
On
Numlock
Off
```
May need to tap `Numlock` a few times to test.
## 2. Alternative for Numlock problem:
[Reddit](https://www.reddit.com/r/coolermaster/comments/7nps6y/a_solution_for_using_numlock_on_coolermaster/) - [GitHub](https://github.com/chaimpeck/toggle-numlock-mac)
Not test yet and look complicated
## 3. Swap Command and Alt: [SOURCE](https://9to5mac.com/2016/03/17/how-to-remap-windows-keyboard-buttons-match-mac-layout/)
- System Preferences → Keyboard → Modifier Keys
- Select your third-party Windows keyboard via the Select keyboard drop down box.
- For the Option (⌥) Key setting, select ⌘ Command.
- For the Command (⌘) Key setting, select (⌥) Option.
- Ok.
-
## 4. Home and End doesn't go to front/end of current line.
[SOURCE](https://www.maketecheasier.com/fix-home-end-button-for-external-keyboard-mac/)
Enter the following in Terminal, enter after each line.
```
cd ~/Library
mkdir KeyBindings
cd KeyBindings
nano DefaultKeyBinding.dict
```
Add these to the text editor:
```
{
/* Remap Home / End keys */
/* Home Button*/
"\UF729" = "moveToBeginningOfLine:";
/* End Button */
"\UF72B" = "moveToEndOfLine:";
/* Shift + Home Button */
"$\UF729" = "moveToBeginningOfLineAndModifySelection:";
/* Shift + End Button */
"$\UF72B" = "moveToEndOfLineAndModifySelection:";
/* Ctrl + Home Button */
"^\UF729" = "moveToBeginningOfDocument:";
/* Ctrl + End Button */
"^\UF72B" = "moveToEndOfDocument:";
/* Shift + Ctrl + Home Button */
"$^\UF729" = "moveToBeginningOfDocumentAndModifySelection:";
/* Shift + Ctrl + End Button*/
"$^\UF72B" = "moveToEndOfDocumentAndModifySelection:";
}
```
Save (using shortcut `Ctrl + o` - `Enter` to confirm) and exit (`Ctrl + x`) the file.
以上是关于markdown CoolerMaster Master解决了OSX上的Pro M问题的主要内容,如果未能解决你的问题,请参考以下文章