Compare commits

...

22 commits
v2.0.0 ... main

Author SHA1 Message Date
1a03c5c580
Removed Zombie Code with sensor binding
All checks were successful
/ build (push) Successful in 3m30s
2025-01-10 00:10:21 +01:00
93c37e0987
Fixed Pipeline to use correct hardcoded Keyboard
Some checks failed
/ build (push) Failing after 2m50s
2025-01-10 00:05:53 +01:00
05d5f2cb51
Changed RGB Chain length
All checks were successful
/ build (push) Successful in 3m43s
2025-01-09 23:52:56 +01:00
97360c9ad9
Updated Keymap
All checks were successful
/ build (push) Successful in 3m42s
2025-01-09 23:38:32 +01:00
35f0f4809e
Enabled RGB
All checks were successful
/ build (push) Successful in 4m14s
2025-01-09 22:51:09 +01:00
92cf5189a3
Updated Workflow for use on Forgejo 2025-01-09 22:48:08 +01:00
6988d3a06e
Changed to referencing Build Workflow from build.yml
All checks were successful
/ build (push) Has been skipped
2024-06-24 19:41:52 +02:00
1ed1bb93a3
Changed runs on to docker 2024-04-16 20:12:30 +02:00
d523103e70
Build Workflow has now content. 2024-04-16 20:11:04 +02:00
73fd6b0d56
Point build to Github explicit
Some checks failed
/ build (push) Failing after 0s
2024-04-16 20:09:01 +02:00
9616e8338f
Trigger Actions
Some checks failed
/ build (push) Failing after 0s
2024-04-16 20:03:41 +02:00
280f2a0066 Added non sticky shift to Symbol Layer 2024-01-13 20:55:13 +01:00
kB01
2100a28cac
Merge pull request #2 from kb01guy/bluetooth
Added Bluetooth Configuration Buttons
2024-01-13 20:52:56 +01:00
eb17e357bf Added more Bluetooth Profiles 2024-01-13 20:23:21 +01:00
d2512d6c00 Added Bluetooth Profile and Clear Buttons 2024-01-11 00:03:28 +01:00
4fbf8d816b Dvorak is again Default 2023-11-17 04:06:32 +01:00
ef7ec27a94 moved unreachable default keys to momentary layers 2023-11-17 03:51:13 +01:00
4a43c38948 Undo config changes 2023-11-17 03:25:26 +01:00
afd457b941 Removed Helper Submodule, back to default pipline 2023-11-17 03:21:32 +01:00
9b45de25be Corrected short bracket typo 2023-11-17 03:12:03 +01:00
0d4ad6902d Added Name, shortened Codes, baselayer and trans 2023-11-17 03:05:46 +01:00
e28503cca4 added de quertz, fixed comments, removed trans 2023-11-17 01:53:58 +01:00
7 changed files with 314 additions and 151 deletions

191
.github/workflows/build-user-config.yml vendored Normal file
View file

@ -0,0 +1,191 @@
name: Reusable user config build
on:
workflow_call:
inputs:
build_matrix_path:
description: "Path to the build matrix file"
default: "build.yaml"
required: false
type: string
config_path:
description: "Path to the config directory"
default: "config"
required: false
type: string
fallback_binary:
description: "Fallback binary format, if no *.uf2 file was built"
default: "bin"
required: false
type: string
archive_name:
description: "Archive output file name"
default: "firmware"
required: false
type: string
jobs:
matrix:
runs-on: docker
name: Fetch Build Keyboards
outputs:
build_matrix: ${{ env.build_matrix }}
steps:
- name: Checkout
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
- uses: actions/checkout@v4
- name: Install Dependencies
run: apt-get update
- run: apt-get -y install python3-pip jq
- name: Install yaml2json
run: python3 -m pip install remarshal
- name: Fetch Build Matrix
run: |
echo "build_matrix=$(yaml2json '${{ inputs.build_matrix_path }}' | jq -c .)" >> $GITHUB_ENV
yaml2json "${{ inputs.build_matrix_path }}" | jq
build:
runs-on: docker
container:
image: zmkfirmware/zmk-build-arm:stable
needs: matrix
name: Build
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.build_matrix) }}
steps:
- name: Checkout
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
- uses: actions/checkout@v4
- name: Create build directory
run: |
echo "build_dir=$(mktemp -d)" >> $GITHUB_ENV
- name: Prepare variables
shell: sh -x {0}
env:
board: ${{ matrix.board }}
shield: ${{ matrix.shield }}
artifact_name: ${{ matrix.artifact-name }}
snippet: ${{ matrix.snippet }}
run: |
if [ -e zephyr/module.yml ]; then
export zmk_load_arg=" -DZMK_EXTRA_MODULES='${GITHUB_WORKSPACE}'"
new_tmp_dir="${TMPDIR:-/tmp}/zmk-config"
mkdir -p "${new_tmp_dir}"
echo "base_dir=${new_tmp_dir}" >> $GITHUB_ENV
else
echo "base_dir=${GITHUB_WORKSPACE}" >> $GITHUB_ENV
fi
if [ -n "${snippet}" ]; then
extra_west_args="-S \"${snippet}\""
fi
echo "zephyr_version=${ZEPHYR_VERSION}" >> $GITHUB_ENV
echo "extra_west_args=${extra_west_args}" >> $GITHUB_ENV
echo "extra_cmake_args=${shield:+-DSHIELD=\"$shield\"}${zmk_load_arg}" >> $GITHUB_ENV
echo "display_name=${shield:+$shield - }${board}" >> $GITHUB_ENV
echo "artifact_name=${artifact_name:-${shield:+$shield-}${board}-zmk}" >> $GITHUB_ENV
- name: Copy config files to isolated temporary directory
run: |
if [ "${{ env.base_dir }}" != "${GITHUB_WORKSPACE}" ]; then
mkdir "${{ env.base_dir }}/${{ inputs.config_path }}"
cp -R ${{ inputs.config_path }}/* "${{ env.base_dir }}/${{ inputs.config_path }}/"
fi
- name: Cache west modules
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
- uses: actions/cache@v4
continue-on-error: true
env:
cache_name: cache-zephyr-${{ env.zephyr_version }}-modules
with:
path: |
${{ env.base_dir }}/modules/
${{ env.base_dir }}/tools/
${{ env.base_dir }}/zephyr/
${{ env.base_dir }}/bootloader/
${{ env.base_dir }}/zmk/
key: ${{ runner.os }}-build-${{ env.cache_name }}-${{ hashFiles('**/west.yml', '**/build.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache_name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: West Init
working-directory: ${{ env.base_dir }}
run: west init -l "${{ env.base_dir }}/${{ inputs.config_path }}"
- name: West Update
working-directory: ${{ env.base_dir }}
run: west update
- name: West Zephyr export
working-directory: ${{ env.base_dir }}
run: west zephyr-export
- name: West Build (${{ env.display_name }})
working-directory: ${{ env.base_dir }}
shell: sh -x {0}
run: west build -s zmk/app -d "${{ env.build_dir }}" -b "${{ matrix.board }}" ${{ env.extra_west_args }} -- -DZMK_CONFIG=${{ env.base_dir }}/${{ inputs.config_path }} ${{ env.extra_cmake_args }} ${{ matrix.cmake-args }}
- name: ${{ env.display_name }} Kconfig file
run: |
if [ -f "${{ env.build_dir }}/zephyr/.config" ]
then
grep -v -e "^#" -e "^$" "${{ env.build_dir }}/zephyr/.config" | sort
else
echo "No Kconfig output"
fi
if: ${{ !cancelled() }}
- name: ${{ env.display_name }} Devicetree file
run: |
if [ -f "${{ env.build_dir }}/zephyr/zephyr.dts" ]
then
cat "${{ env.build_dir }}/zephyr/zephyr.dts"
elif [ -f "${{ env.build_dir }}/zephyr/zephyr.dts.pre" ]
then
cat -s "${{ env.build_dir }}/zephyr/zephyr.dts.pre"
else
echo "No Devicetree output"
fi
if: ${{ !cancelled() }}
- name: Rename artifacts
shell: sh -x {0}
run: |
mkdir "${{ env.build_dir }}/artifacts"
if [ -f "${{ env.build_dir }}/zephyr/zmk.uf2" ]
then
cp "${{ env.build_dir }}/zephyr/zmk.uf2" "${{ env.build_dir }}/artifacts/${{ env.artifact_name }}.uf2"
elif [ -f "${{ env.build_dir }}/zephyr/zmk.${{ inputs.fallback_binary }}" ]
then
cp "${{ env.build_dir }}/zephyr/zmk.${{ inputs.fallback_binary }}" "${{ env.build_dir }}/artifacts/${{ env.artifact_name }}.${{ inputs.fallback_binary }}"
fi
- name: Archive (${{ env.display_name }})
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
- uses: actions/upload-artifact@v3
with:
name: artifact-${{ env.artifact_name }}
path: ${{ env.build_dir }}/artifacts
merge:
runs-on: docker
needs: build
name: Merge Output Artifacts
steps:
- name: Merge Artifacts
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
- uses: actions/upload-artifact/merge@v4
with:
name: ${{ inputs.archive_name }}
pattern: artifact-*
delete-merged: true

View file

@ -2,4 +2,48 @@ on: [push, pull_request, workflow_dispatch]
jobs:
build:
uses: urob/zmk/.github/workflows/build-user-config.yml@build-with-submodules
runs-on: docker
container:
image: zmkfirmware/zmk-build-arm:stable
steps:
- name: Install Dependencies
run: |
apt-get update
apt-get install tree curl -y
- name: Install Node.JS Workarround, see https://github.com/nektos/act/issues/973
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt install -y nodejs
node --version
- name: Git checkout
uses: actions/checkout@v4
- name: Clone ZMK Repo
run: git clone -b feat/pointers-move-scroll https://github.com/petejohanson/zmk.git
- name: Initialize ZMK
working-directory: ./zmk
run: |
west init -l app/
west update
- name: Build Left Shield
working-directory: ./zmk/app
run: west build -d build/left -b nice_nano_v2 -- -DSHIELD=corne_left -DZMK_CONFIG="../../config"
- name: Build Right Shield
working-directory: ./zmk/app
run: west build -d build/right -b nice_nano_v2 -- -DSHIELD=corne_right -DZMK_CONFIG="../../config"
- name: Rename artifacts
working-directory: .
run: |
mkdir "./artifacts"
cp ./zmk/app/build/left/zephyr/zmk.uf2 ./artifacts/corne_left-nice_nano_v2-zmk.uf2
cp ./zmk/app/build/right/zephyr/zmk.uf2 ./artifacts/corne_right-nice_nano_v2-zmk.uf2
- name: Upload Artifacts
if: ${{ true }}
uses: actions/upload-artifact@v3
with:
name: firmware
path: ./artifacts

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "zmk-nodefree-config"]
path = zmk-nodefree-config
url = https://github.com/urob/zmk-nodefree-config

BIN
config/.corne.conf.kate-swp Normal file

Binary file not shown.

View file

@ -4,3 +4,12 @@
# Uncomment the following line to enable the Corne OLED Display
# CONFIG_ZMK_DISPLAY=y
# RGB underglow
CONFIG_ZMK_RGB_UNDERGLOW=y
CONFIG_WS2812_STRIP=y
# RGB backlight
CONFIG_ZMK_BACKLIGHT_ON_START=y

View file

@ -6,13 +6,18 @@
#include <behaviors.dtsi>
#include <dt-bindings/zmk/keys.h>
#include <dt-bindings/zmk/rgb.h>
&led_strip {
chain-length = <27>;
};
/ {
combos {
compatible = "zmk,combos";
number_layer {
bindings = <&mo 4>;
bindings = <&mo 5>;
key-positions = <37 41>;
};
@ -23,199 +28,108 @@
};
macros {
alt_trans: alt_trans {
sym_sec: sym_sec {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings =
<&macro_press>,
<&kp RALT>,
<&macro_tap>,
<&trans>,
<&macro_release>,
<&kp RALT>;
label = "ALT_TRANS";
};
sym_section: sym_section {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp S &kp O>;
label = "SYM_SECTION";
bindings = <&kp SLCK &kp S &kp O>;
label = "sym_sec";
};
de_ue: de_ue {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp U &kp DQT>;
bindings = <&kp SLCK &kp U &kp DQT>;
label = "DE_UE";
};
de_ae: de_ae {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp A &kp DQT>;
bindings = <&kp SLCK &kp A &kp DQT>;
label = "DE_AE";
};
de_oe: de_oe {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp O &kp DQT>;
bindings = <&kp SLCK &kp O &kp DQT>;
label = "DE_OE";
};
de_ss: de_ss {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp S &kp S>;
bindings = <&kp SLCK &kp S &kp S>;
label = "DE_SS";
};
sym_eur: sym_eur {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp C &kp EQUAL>;
bindings = <&kp SLCK &kp C &kp EQUAL>;
label = "SYM_EUR";
};
sym_ss1: sym_ss1 {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp CARET &kp KP_NUMBER_1>;
bindings = <&kp SLCK &kp CARET &kp KP_NUMBER_1>;
label = "SYM_SS1";
};
sym_ss2: sym_ss2 {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp CARET &kp KP_NUMBER_2>;
bindings = <&kp SLCK &kp CARET &kp KP_NUMBER_2>;
label = "SYM_SS2";
};
sym_ss3: sym_ss3 {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp CARET &kp KP_NUMBER_3>;
bindings = <&kp SLCK &kp CARET &kp KP_NUMBER_3>;
label = "SYM_SS3";
};
sym_tm: sym_tm {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp T &kp M>;
bindings = <&kp SLCK &kp T &kp M>;
label = "SYM_TM";
};
sym_reg: sym_reg {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp O &kp R>;
bindings = <&kp SLCK &kp O &kp R>;
label = "SYM_REG";
};
sym_copy: sym_copy {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp O &kp C>;
bindings = <&kp SLCK &kp O &kp C>;
label = "SYM_COPY";
};
nav_space_next: nav_space_next {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings =
<&macro_press>,
<&kp LCTRL &kp LGUI>,
<&macro_tap>,
<&kp RIGHT>,
<&macro_release>,
<&kp LGUI &kp LCTRL>;
label = "NAV_SPACE_NEXT";
};
nav_space_prev: nav_space_prev {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&sk LCTRL &sk LGUI &kp LEFT>;
label = "NAV_SPACE_PREV";
};
nav_win_next: nav_win_next {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&sk LALT &kp TAB>;
label = "NAV_WIN_NEXT";
};
nav_win_prev: nav_win_prev {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&sk LALT &sk LSHIFT &kp TAB>;
label = "NAV_WIN_PREV";
};
nav_desktop: nav_desktop {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&sk LGUI &kp D>;
label = "NAV_DESKTOP";
};
shift_trans: shift_trans {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings =
<&macro_press>,
<&kp LSHIFT>,
<&macro_tap>,
<&trans>,
<&macro_release>,
<&kp LSHIFT>;
label = "SHIFT_TRANS";
};
sym_deg: sym_deg {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp O &kp O>;
bindings = <&kp SLCK &kp O &kp O>;
label = "SYM_DEG";
};
de_ue_gr: de_ue_gr {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(U) &kp DQT>;
label = "DE_UE_GR";
};
de_ae_gr: de_ae_gr {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(A) &kp DQT>;
label = "DE_AE_GR";
};
de_oe_gr: de_oe_gr {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(O) &kp DQT>;
label = "DE_OE_GR";
};
sym_mu: sym_mu {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp M &kp U>;
bindings = <&kp SLCK &kp M &kp U>;
label = "SYM_MU";
};
sym_acute: sym_acute {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp SQT &kp SQT>;
bindings = <&kp SLCK &kp SQT &kp SQT>;
label = "SYM_ACUTE";
};
};
@ -257,18 +171,18 @@
mods = <(MOD_RALT)>;
};
de_less_more_pipe: de_less_more_pipe {
de_lt_mt_pipe: de_lt_mt_pipe {
compatible = "zmk,behavior-mod-morph";
label = "DE_LESS_MORE_PIPE";
label = "de_lt_mt_pipe";
bindings = <&part_less_pipe>, <&kp GREATER_THAN>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
de_caret_degree: de_caret_degree {
de_car_deg: de_car_deg {
compatible = "zmk,behavior-mod-morph";
label = "DE_CARET_DEGREE";
label = "de_car_deg";
bindings = <&kp CARET>, <&sym_deg>;
#binding-cells = <0>;
@ -284,18 +198,18 @@
mods = <(MOD_RALT)>;
};
de_plus_star_tilde: de_plus_star_tilde {
de_plus_str_tld: de_plus_str_tld {
compatible = "zmk,behavior-mod-morph";
label = "DE_PLUS_STAR_TILDE";
label = "de_plus_str_tld";
bindings = <&part_plus_tilde>, <&kp STAR>;
#binding-cells = <0>;
mods = <(MOD_RALT)>;
};
dv_qestion_ss: dv_qestion_ss {
dv_qmark_ss: dv_qmark_ss {
compatible = "zmk,behavior-mod-morph";
label = "DV_QESTION_SS";
label = "dv_qmark_ss";
bindings = <&kp QMARK>, <&de_ss>;
#binding-cells = <0>;
@ -324,54 +238,63 @@
keymap {
compatible = "zmk,keymap";
default_layer {
base_colemak-dh {
bindings = <
&kp TAB &kp Q &kp W &kp F &kp P &kp B &kp J &kp L &kp U &kp Y &de_hash &trans
&kp ESC &kp A &kp R &kp S &kp T &kp G &kp M &kp N &kp E &kp I &kp O &trans
&trans &kp Z &kp X &kp C &kp D &kp V &kp K &kp H &de_comma &de_dot &kp MINUS &trans
&mo 2 &kp LSHIFT &kp RET &kp BSPC &kp SPACE &mo 4
>;
};
base_quertz-de {
// -----------------------------------------------------------------------------------------
// | TAB | Ü | , | . | P | Y | | F | G | C | T | Z | ? |
// | SHFT | A | O | E | I | U | | H | D | R | N | S | L |
// | Ä | Ö | Q | J | K | X | | B | M | , | . | # | - |
// | CTRL| GUI | SPC | | ENT | RSE | ALT |
// | ESC | Q | W | E | R | T | | Y | U | I | O | P | \ |
// | TAB | A | S | D | F | G | | H | J | K | L | ; | ' |
// | SHIFT | Z | X | C | V | B | | N | M | , | . | / | CTRL |
// | GUI | DEL | RET | | TAB | BSPC | R-ALT |
bindings = <
&kp TAB &de_ue &de_comma &de_dot &kp P &kp Y &kp F &kp G &kp C &kp T &kp Z &kp BACKSPACE
&kp ESCAPE &kp A &kp O &kp E &kp I &kp U &kp H &kp D &kp R &kp N &kp S &kp L
&de_ae &de_oe &kp Q &kp J &kp K &kp X &kp B &kp M &kp W &kp V &de_hash &kp MINUS
&mo 1 &kp LSHFT &kp ENTER &kp BACKSPACE &kp SPACE &mo 2
&kp TAB &kp Q &kp W &kp E &kp R &kp T &kp Z &kp U &kp I &kp O &kp P &de_ue
&kp ESC &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &de_oe &de_ae
&kp LCTRL &kp Y &kp X &kp C &kp V &kp B &kp N &kp M &de_comma &de_dot &kp MINUS &de_hash
&none &mo 2 &kp LSHFT &kp SPACE &mo 4 &none
>;
};
extend {
extend_layer {
bindings = <
&kp ESC &kp DEL &kp C_AC_BACK &kp C_AC_FIND &kp C_AC_FORWARD &kp INS &kp PAGE_UP &kp HOME &kp UP &kp END &none &kp BSPC
&none &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &sk RALT &kp PAGE_DOWN &kp LEFT &kp DOWN &kp RIGHT &none &kp ENTER
&none &kp LC(Z) &kp LC(X) &kp LC(C) &kp LGUI &kp LC(V) &none &none &kp TAB &kp K_APP &kp PRINTSCREEN &none
&none &kp LSHFT &kp ENTER &kp BSPC &kp SPACE &none
&trans &kp ESC &kp K_BACK &kp TAB &kp K_FORWARD &kp INS &kp HOME &kp PG_UP &kp UP &kp PG_DN &kp CAPS &trans
&trans &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &sk RALT &kp END &kp LEFT &kp DOWN &kp RIGHT &kp DEL &trans
&trans &kp LC(Z) &kp LC(X) &kp LC(C) &kp LGUI &kp LC(V) &kp ENTER &kp BSPC &kp TAB &kp K_APP &kp PSCRN &trans
&trans &trans &trans &trans &kp RET &trans
>;
};
symbol {
function_layer {
bindings = <
&de_caret_degree &kp LEFT_BRACE &kp LEFT_BRACKET &kp RIGHT_BRACKET &kp RIGHT_BRACE &kp DOLLAR &kp EXCL &kp DOUBLE_QUOTES &sym_copy &sym_tm &de_plus_star_tilde &de_acute_grave
&none &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &sk RALT &dv_qestion_ss &sym_section &sym_reg &kp LPAR &kp RPAR &dv_slash
&none &de_less_more_pipe &none &none &kp AT &sym_eur &kp PERCENT &sym_mu &kp AMPERSAND &kp EQUAL &de_hash &kp MINUS
&none &kp LSHFT &kp ENTER &kp BSPC &kp SPACE &none
&rgb_ug RGB_EFF &kp K_STOP &kp K_PREV &kp K_PLAY_PAUSE &kp K_NEXT &kp C_BRIGHTNESS_INC &kp F12 &kp F7 &kp F8 &kp F9 &kp SLCK &rgb_ug RGB_TOG
&rgb_ug RGB_SPI &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &kp C_BRI_DEC &kp F11 &kp F4 &kp F5 &kp F6 &to 1 &rgb_ug RGB_BRI
&rgb_ug RGB_SPD &kp K_MUTE &kp C_VOL_DN &kp LC(LS(C)) &kp C_VOL_UP &kp LC(LS(V)) &kp F10 &kp F1 &kp F2 &kp F3 &to 0 &rgb_ug RGB_BRD
&none &trans &trans &kp ENTER &trans &none
>;
};
function {
symbol_layer {
bindings = <
&trans &kp C_STOP &kp C_PREV &kp C_PP &kp C_NEXT &kp C_BRI_UP &kp F12 &kp F7 &kp F8 &kp F9 &kp SLCK &trans
&trans &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &kp C_BRI_DN &kp F11 &kp F4 &kp F5 &kp F6 &trans &trans
&trans &kp C_MUTE &kp C_VOLUME_DOWN &kp LS(LC(C)) &kp C_VOLUME_UP &kp LC(LS(V)) &kp F10 &kp F1 &kp F2 &kp F3 &none &trans
&trans &kp LSHFT &kp ENTER &kp BSPC &kp SPACE &trans
&trans &de_ae &kp EXCL &sym_eur &kp DOLLAR &kp PERCENT &sym_deg &kp GRAVE &de_ue &kp DQT &de_oe &trans
&trans &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &kp PIPE &kp CARET &kp LEFT_PARENTHESIS &kp LBRC &kp LBKT &kp LT &trans
&trans &kp AT &kp QMARK &kp BSLH &kp AMPS &trans &kp TILDE &kp RIGHT_PARENTHESIS &kp RBRC &kp RBKT &kp GT &trans
&none &mo 3 &mo 5 &trans &none &none
>;
};
number {
number_layer {
bindings = <
&none &de_less_more_pipe &de_comma &de_dot &none &none &kp EQUAL &kp N7 &kp N8 &kp N9 &kp PLUS &kp BSPC
&none &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &sk RALT &kp STAR &kp N4 &kp N5 &kp N6 &kp MINUS &kp RET
&none &none &kp Y &kp TAB &kp BSPC &kp ENTER &kp N0 &kp N1 &kp N2 &kp N3 &kp FSLH &none
&none &kp LSHFT &kp ENTER &kp BSPC &kp SPACE &none
&trans &trans &trans &trans &trans &kp LNLCK &kp EQUAL &kp N7 &kp N8 &kp N9 &kp PLUS &trans
&trans &sk LALT &sk LGUI &sk LSHFT &sk LCTRL &sk RALT &kp STAR &kp N4 &kp N5 &kp N6 &kp MINUS &trans
&trans &trans &kp K_APP &kp TAB &kp BSPC &kp RET &kp N0 &kp N1 &kp N2 &kp N3 &kp FSLH &trans
&none &trans &none &trans &none &none
>;
};
};

@ -1 +0,0 @@
Subproject commit 4bdd8e85dca9ee1c817065bba4a70a7e1fd78eae