Compare commits

...

26 commits
v1.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
5917c61598 moved del to left for single hand use 2023-11-16 23:28:51 +01:00
kB01
216cf1ab35 Addet missing At Sign 2023-11-16 23:14:21 +01:00
kB01
691e75eadd Non-Default layers changed ispo: stevep99/seniply 2023-11-16 22:07:13 +01:00
kB01
64c332fe18 use mod-morph instead of hardcoded shift layer 2023-11-16 11:54:54 +01:00
7 changed files with 431 additions and 152 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

@ -5,257 +5,296 @@
*/
#include <behaviors.dtsi>
#include <dt-bindings/zmk/bt.h>
#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 5>;
key-positions = <37 41>;
};
function_layer {
bindings = <&mo 3>;
key-positions = <36 41>;
};
};
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>;
bindings = <&kp SLCK &kp S &kp O>;
label = "sym_sec";
};
label = "ALT_TRANS";
};
sym_section: sym_section {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp S &kp O>;
label = "SYM_SECTION";
};
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 {
sym_mu: sym_mu {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(U) &kp DQT>;
label = "DE_UE_GR";
bindings = <&kp SLCK &kp M &kp U>;
label = "SYM_MU";
};
de_ae_gr: de_ae_gr {
sym_acute: sym_acute {
compatible = "zmk,behavior-macro";
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(A) &kp DQT>;
label = "DE_AE_GR";
bindings = <&kp SLCK &kp SQT &kp SQT>;
label = "SYM_ACUTE";
};
de_oe_gr: de_oe_gr {
compatible = "zmk,behavior-macro";
};
behaviors {
de_hash: de_hash {
compatible = "zmk,behavior-mod-morph";
label = "DE_HASH";
bindings = <&kp HASH>, <&kp SQT>;
#binding-cells = <0>;
bindings = <&kp RALT &kp LS(O) &kp DQT>;
label = "DE_OE_GR";
mods = <(MOD_LSFT)>;
};
de_comma: de_comma {
compatible = "zmk,behavior-mod-morph";
label = "DE_COMMA";
bindings = <&kp COMMA>, <&kp SEMICOLON>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
de_dot: de_dot {
compatible = "zmk,behavior-mod-morph";
label = "DE_DOT";
bindings = <&kp DOT>, <&kp COLON>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
part_less_pipe: part_less_pipe {
compatible = "zmk,behavior-mod-morph";
label = "PART_LESS_PIPE";
bindings = <&kp LESS_THAN>, <&kp PIPE>;
#binding-cells = <0>;
mods = <(MOD_RALT)>;
};
de_lt_mt_pipe: de_lt_mt_pipe {
compatible = "zmk,behavior-mod-morph";
label = "de_lt_mt_pipe";
bindings = <&part_less_pipe>, <&kp GREATER_THAN>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
de_car_deg: de_car_deg {
compatible = "zmk,behavior-mod-morph";
label = "de_car_deg";
bindings = <&kp CARET>, <&sym_deg>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
part_plus_tilde: part_plus_tilde {
compatible = "zmk,behavior-mod-morph";
label = "PART_PLUS_TILDE";
bindings = <&kp PLUS>, <&kp TILDE>;
#binding-cells = <0>;
mods = <(MOD_RALT)>;
};
de_plus_str_tld: de_plus_str_tld {
compatible = "zmk,behavior-mod-morph";
label = "de_plus_str_tld";
bindings = <&part_plus_tilde>, <&kp STAR>;
#binding-cells = <0>;
mods = <(MOD_RALT)>;
};
dv_qmark_ss: dv_qmark_ss {
compatible = "zmk,behavior-mod-morph";
label = "dv_qmark_ss";
bindings = <&kp QMARK>, <&de_ss>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
de_acute_grave: de_acute_grave {
compatible = "zmk,behavior-mod-morph";
label = "DE_ACUTE_GRAVE";
bindings = <&sym_acute>, <&kp GRAVE>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
dv_slash: dv_slash {
compatible = "zmk,behavior-mod-morph";
label = "DV_SLASH";
bindings = <&kp SLASH>, <&kp NON_US_BACKSLASH>;
#binding-cells = <0>;
mods = <(MOD_LSFT)>;
};
};
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 &kp COMMA &kp PERIOD &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 &kp HASH &kp MINUS
&kp LCTRL &kp LEFT_GUI &kp SPACE &to 1 &mo 5 &mo 4
&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
>;
};
number {
// -----------------------------------------------------------------------------------------
// | TAB | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | BKSP |
// | BTCLR| BT1 | BT2 | BT3 | BT4 | BT5 | | LFT | DWN | UP | RGT | | |
// | SHFT | | | | | | | | | | | | |
// | GUI | | SPC | | ENT | | ALT |
extend_layer {
bindings = <
&kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp KP_PLUS &kp BSPC
&bt BT_CLR &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &kp PRINTSCREEN &mt C_STOP C_PLAY_PAUSE &mt C_RW C_PREV &mt C_FF C_NEXT &kp KP_MINUS &kp ENTER
&none &none &none &none &none &none &kp C_MENU &kp C_MUTE &kp C_VOL_DN &kp C_VOL_UP &kp C_BRIGHTNESS_DEC &kp C_BRIGHTNESS_INC
&kp LCTRL &kp LEFT_GUI &to 0 &to 3 &mo 2 &kp LEFT_ALT
&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 {
// -----------------------------------------------------------------------------------------
// | TAB | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BKSP |
// | CTRL | | | | | | | - | = | [ | ] | \ | ` |
// | SHFT | | | | | | | _ | + | { | } | "|" | ~ |
// | GUI | | SPC | | ENT | | ALT |
function_layer {
bindings = <
&kp EXCLAMATION &kp DOUBLE_QUOTES &sym_section &kp DOLLAR &kp PERCENT &kp AMPERSAND &kp GRAVE &kp LEFT_PARENTHESIS &kp RIGHT_PARENTHESIS &kp KP_EQUAL &kp ASTERISK &kp BSPC
&sym_ss1 &sym_ss2 &sym_ss3 &trans &trans &none &kp LEFT_BRACE &kp LEFT_BRACKET &kp RIGHT_BRACKET &kp RIGHT_BRACE &kp TILDE &kp KP_MINUS
&kp LESS_THAN &kp GREATER_THAN &kp PIPE &kp AT_SIGN &sym_eur &none &none &kp SLASH &kp QUESTION &de_ss &kp UNDERSCORE &kp KP_PLUS
&kp LCTRL &kp LGUI &to 0 &none &trans &kp LALT
&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
>;
};
navigation {
symbol_layer {
bindings = <
&kp F1 &kp F2 &kp F3 &kp F4 &kp F5 &kp F6 &kp F7 &kp F8 &kp F9 &kp F10 &kp F11 &kp F12
&kp TAB &nav_win_prev &nav_win_next &nav_space_prev &nav_space_next &nav_desktop &kp LEFT &kp DOWN &kp UP &kp RIGHT &none &kp ENTER
&none &none &none &none &none &none &kp INS &kp DEL &kp HOME &kp END &kp PG_UP &kp PG_DN
&kp LCTRL &kp LGUI &to 0 &none &kp RSHFT &kp LALT
&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
>;
};
altgr {
number_layer {
bindings = <
&trans &kp LEFT_BRACE &kp LEFT_BRACKET &kp RIGHT_BRACKET &kp RIGHT_BRACE &alt_trans &alt_trans &alt_trans &sym_copy &sym_tm &alt_trans &trans
&trans &kp AT &alt_trans &sym_eur &kp PIPE &alt_trans &alt_trans &alt_trans &sym_reg &kp LPAR &kp RPAR &kp ENTER
&trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &alt_trans &trans
&trans &trans &trans &trans &trans &trans
>;
};
shift {
bindings = <
&kp LS(TAB) &de_ue_gr &kp SEMI &kp LS(SEMI) &kp LS(P) &kp LS(Y) &kp LS(F) &kp LS(G) &kp LS(C) &kp LS(T) &kp LS(Z) &kp LS(BACKSPACE)
&kp LS(ESC) &kp LS(A) &kp LS(O) &kp LS(E) &kp LS(I) &kp LS(U) &kp LS(H) &kp LS(D) &kp LS(R) &kp LS(N) &kp LS(S) &kp LS(L)
&de_ae_gr &de_oe_gr &kp LS(Q) &kp LS(J) &kp LS(K) &kp LS(X) &kp LS(B) &kp LS(M) &kp LS(W) &kp LS(V) &kp SQT &kp UNDER
&kp LS(LCTRL) &kp LS(LEFT_WIN) &kp LS(SPACE) &trans &trans &kp LALT
>;
};
layer_6 {
bindings = <
&trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans
&trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans
&trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans
&trans &trans &trans &trans &trans &trans
&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