Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MacOS Brightness Alias #4836

Merged
merged 9 commits into from
Jan 18, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/keycodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ This is a reference only. Each group of keys links to the page documenting their
|`KC_MEDIA_REWIND` |`KC_MRWD` |Previous Track (macOS) |
|`KC_BRIGHTNESS_UP` |`KC_BRIU` |Brightness Up |
|`KC_BRIGHTNESS_DOWN` |`KC_BRID` |Brightness Down |
|`KC_MAC_BRIGHTNESS_UP` |`KC_MAC_BRIU` |Brightness Up (macOS) |
|`KC_MAC_BRIGHTNESS_DWN`|`KC_MAC_BRID` |Brightness Down (macOS) |

## [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes)

Expand Down
6 changes: 6 additions & 0 deletions tmk_core/common/keycode.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define KC_ACL1 KC_MS_ACCEL1
#define KC_ACL2 KC_MS_ACCEL2

/* System Specfic Aliases */
germ marked this conversation as resolved.
Show resolved Hide resolved
#define KC_MAC_BRIU KC_SLCK
#define KC_MAC_BRID KC_PAUS
#define KC_MAC_BRIGHTNESS_UP KC_SLCK
#define KC_MAC_BRIGHTNESS_DWN KC_PAUS

/* Keyboard/Keypad Page (0x07) */
enum hid_keyboard_keypad_usage {
KC_NO = 0x00,
Expand Down