keymap.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Copyright 2021 Leon Anavi <leon@anavi.org>
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include QMK_KEYBOARD_H
  17. enum custom_keycodes {
  18. GITCOMMIT = SAFE_RANGE,
  19. GITPUSH
  20. };
  21. void keyboard_post_init_user(void) {
  22. // Set backlight to the maximum brightness
  23. backlight_level(2);
  24. }
  25. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  26. switch (keycode) {
  27. case GITCOMMIT:
  28. if (record->event.pressed) {
  29. SEND_STRING("git commit -s\n");
  30. }
  31. break;
  32. case GITPUSH:
  33. if (record->event.pressed) {
  34. SEND_STRING("git push\n");
  35. }
  36. }
  37. return true;
  38. };
  39. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  40. [0] = LAYOUT(
  41. GITCOMMIT, GITPUSH
  42. )
  43. };