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

adds veilid SAO macropad #23868

Merged
merged 14 commits into from
Jul 13, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update keyboards/rot13labs/veilid_sao/keymaps/default/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
  • Loading branch information
c0ldbru and drashna committed Jun 21, 2024
commit 83d72869a41a169334c795f239a90200548d58bd
10 changes: 5 additions & 5 deletions keyboards/rot13labs/veilid_sao/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case QK_USER_1:
if (record->event.pressed) {
tap_code16(LGUI(KC_SPACE));
_delay_ms(1000);
wait_ms(1000);
tap_code(KC_LEFT_GUI);
_delay_ms(1000);
wait_ms(1000);
SEND_STRING("terminal");
_delay_ms(1000);
wait_ms(1000);
tap_code(KC_ENTER);
_delay_ms(1000);
wait_ms(1000);
SEND_STRING("open https://veilid.com\n");
_delay_ms(1000);
wait_ms(1000);
SEND_STRING("start https://veilid.com\n");
}
break;
Expand Down
Loading