├── .cargo └── config ├── .github └── workflows │ ├── ci.yml │ └── version.py ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── backend ├── Cargo.toml ├── build.rs ├── examples │ ├── benchmark.rs │ └── daemon.rs ├── i18n.toml └── src │ ├── backend.rs │ ├── benchmark │ ├── block_dev.rs │ ├── mod.rs │ ├── usb_dev.rs │ └── usb_hub.rs │ ├── board.rs │ ├── color.rs │ ├── daemon │ ├── client.rs │ ├── daemon_thread.rs │ ├── dummy.rs │ ├── mod.rs │ ├── s76power.rs │ └── server.rs │ ├── deref_cell.rs │ ├── key.rs │ ├── keymap.rs │ ├── layer.rs │ ├── layout │ ├── meta.rs │ ├── mod.rs │ └── physical_layout.rs │ ├── lib.rs │ ├── localize.rs │ ├── matrix.rs │ ├── mode.rs │ ├── nelson.rs │ └── rect.rs ├── data ├── com.system76.keyboardconfigurator.gresource.xml ├── icons │ └── scalable │ │ ├── apps │ │ └── com.system76.keyboardconfigurator.svg │ │ └── status │ │ └── launch-keyboard-not-found.svg ├── system76_launch_1_default.hex ├── system76_launch_2_default.hex ├── system76_launch_heavy_1_default.hex └── system76_launch_lite_1_default.hex ├── debian ├── changelog ├── com.system76.pkexec.keyboardconfigurator.policy ├── compat ├── control ├── copyright ├── libsystem76-keyboard-configurator-dev.install ├── libsystem76-keyboard-configurator.install ├── libsystem76-keyboard-configurator.trigger ├── rules ├── source │ ├── format │ └── options ├── system76-keyboard-configurator.install └── test-launch-system76-keyboard-configurator.install ├── ffi ├── Cargo.toml ├── build.rs ├── src │ └── lib.rs ├── system76_keyboard_configurator.h └── system76_keyboard_configurator.pc.in ├── flake.lock ├── flake.nix ├── i18n.toml ├── i18n ├── cs │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── da │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── de │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── en │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── es │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── fi │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── fr │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── hu │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── it │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── ko │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── nl │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── pl │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── pt-BR │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── ru │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── sl │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl └── tr │ ├── system76_keyboard_configurator.ftl │ ├── system76_keyboard_configurator_backend.ftl │ └── system76_keyboard_configurator_widgets.ftl ├── layouts.py ├── layouts ├── README.md ├── keyboards │ └── system76 │ │ ├── 14in_81 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 14in_83 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 14in_86 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 15in_102 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 15in_102_nkey │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 18H9LHA04 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── 18H9LHA05 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_1 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_2 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_3 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_alpha_1 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_alpha_2 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_heavy_1 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ ├── launch_heavy_3 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json │ │ └── launch_lite_1 │ │ ├── layout.json │ │ ├── leds.json │ │ └── physical.json ├── keymap │ ├── ec.json │ ├── qmk.json │ └── qmk_legacy.json ├── picker.json └── system76 │ ├── addw1 │ ├── default.json │ └── meta.json │ ├── addw2 │ ├── default.json │ └── meta.json │ ├── addw3 │ ├── default.json │ └── meta.json │ ├── addw4 │ ├── default.json │ └── meta.json │ ├── bonw14 │ ├── default.json │ └── meta.json │ ├── bonw15 │ ├── default.json │ └── meta.json │ ├── darp10-b │ ├── default.json │ └── meta.json │ ├── darp10 │ ├── default.json │ └── meta.json │ ├── darp11-b │ ├── default.json │ └── meta.json │ ├── darp11 │ ├── default.json │ └── meta.json │ ├── darp5 │ ├── default.json │ └── meta.json │ ├── darp6 │ ├── default.json │ └── meta.json │ ├── darp7 │ ├── default.json │ └── meta.json │ ├── darp8 │ ├── default.json │ └── meta.json │ ├── darp9 │ ├── default.json │ └── meta.json │ ├── galp3-c │ ├── default.json │ └── meta.json │ ├── galp4 │ ├── default.json │ └── meta.json │ ├── galp5 │ ├── default.json │ └── meta.json │ ├── galp6 │ ├── default.json │ └── meta.json │ ├── galp7 │ ├── default.json │ └── meta.json │ ├── gaze15 │ ├── default.json │ └── meta.json │ ├── gaze16-3050 │ ├── default.json │ └── meta.json │ ├── gaze16-3060-b │ ├── default.json │ └── meta.json │ ├── gaze16-3060 │ ├── default.json │ └── meta.json │ ├── gaze17-3050 │ ├── default.json │ └── meta.json │ ├── gaze17-3060-b │ ├── default.json │ └── meta.json │ ├── gaze18 │ ├── default.json │ └── meta.json │ ├── gaze20 │ ├── default.json │ └── meta.json │ ├── launch_1 │ ├── default.json │ └── meta.json │ ├── launch_2 │ ├── default.json │ └── meta.json │ ├── launch_3 │ ├── default.json │ └── meta.json │ ├── launch_alpha_1 │ ├── default.json │ └── meta.json │ ├── launch_alpha_2 │ ├── default.json │ └── meta.json │ ├── launch_heavy_1 │ ├── default.json │ └── meta.json │ ├── launch_heavy_3 │ ├── default.json │ └── meta.json │ ├── launch_lite_1 │ ├── default.json │ └── meta.json │ ├── lemp10 │ ├── default.json │ └── meta.json │ ├── lemp11 │ ├── default.json │ └── meta.json │ ├── lemp12 │ ├── default.json │ └── meta.json │ ├── lemp13-b │ ├── default.json │ └── meta.json │ ├── lemp13 │ ├── default.json │ └── meta.json │ ├── lemp9 │ ├── default.json │ └── meta.json │ ├── oryp10 │ ├── default.json │ └── meta.json │ ├── oryp11 │ ├── default.json │ └── meta.json │ ├── oryp12 │ ├── default.json │ └── meta.json │ ├── oryp5 │ ├── default.json │ └── meta.json │ ├── oryp6 │ ├── default.json │ └── meta.json │ ├── oryp7 │ ├── default.json │ └── meta.json │ ├── oryp8 │ ├── default.json │ └── meta.json │ ├── oryp9 │ ├── default.json │ └── meta.json │ └── serw13 │ ├── default.json │ └── meta.json ├── linux ├── build.py ├── com.system76.keyboardconfigurator.appdata.xml ├── com.system76.keyboardconfigurator.desktop ├── com.system76.keyboardconfiguratorlaunchtest.desktop └── linuxdeploy-plugin-gtk.sh ├── macos ├── Info.plist.in ├── README.md ├── appdmg.json ├── background.svg ├── build.py ├── deploy.py ├── launcher.sh └── signing.sh ├── rust-toolchain.toml ├── screenshots └── screenshot-01.png ├── src ├── about_dialog.rs ├── backlight.rs ├── configurator_app.rs ├── error_dialog.rs ├── keyboard.rs ├── keyboard_layer.rs ├── localize.rs ├── main.rs ├── main_window.rs ├── page.rs ├── picker │ ├── mod.rs │ ├── picker_group.rs │ ├── picker_group_box.rs │ ├── picker_json.rs │ └── picker_key.rs ├── shortcuts_window.rs ├── shortcuts_window.ui └── testing.rs ├── tools ├── Cargo.toml └── src │ └── pkgconfig.rs ├── widgets ├── Cargo.toml ├── examples │ └── keyboard_color.rs ├── i18n.toml └── src │ ├── choose_color.rs │ ├── color_circle.rs │ ├── color_wheel.rs │ ├── keyboard_backlight_widget.rs │ ├── keyboard_color.rs │ ├── lib.rs │ ├── localize.rs │ └── selected_keys.rs └── windows ├── README.md ├── banner.svg ├── build.bat ├── build.py ├── dialog.svg ├── gpl.rtf └── keyboard-configurator.wxs /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/.cargo/config -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/.github/workflows/version.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/RELEASING.md -------------------------------------------------------------------------------- /backend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/Cargo.toml -------------------------------------------------------------------------------- /backend/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/build.rs -------------------------------------------------------------------------------- /backend/examples/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/examples/benchmark.rs -------------------------------------------------------------------------------- /backend/examples/daemon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/examples/daemon.rs -------------------------------------------------------------------------------- /backend/i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/i18n.toml -------------------------------------------------------------------------------- /backend/src/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/backend.rs -------------------------------------------------------------------------------- /backend/src/benchmark/block_dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/benchmark/block_dev.rs -------------------------------------------------------------------------------- /backend/src/benchmark/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/benchmark/mod.rs -------------------------------------------------------------------------------- /backend/src/benchmark/usb_dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/benchmark/usb_dev.rs -------------------------------------------------------------------------------- /backend/src/benchmark/usb_hub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/benchmark/usb_hub.rs -------------------------------------------------------------------------------- /backend/src/board.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/board.rs -------------------------------------------------------------------------------- /backend/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/color.rs -------------------------------------------------------------------------------- /backend/src/daemon/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/client.rs -------------------------------------------------------------------------------- /backend/src/daemon/daemon_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/daemon_thread.rs -------------------------------------------------------------------------------- /backend/src/daemon/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/dummy.rs -------------------------------------------------------------------------------- /backend/src/daemon/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/mod.rs -------------------------------------------------------------------------------- /backend/src/daemon/s76power.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/s76power.rs -------------------------------------------------------------------------------- /backend/src/daemon/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/daemon/server.rs -------------------------------------------------------------------------------- /backend/src/deref_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/deref_cell.rs -------------------------------------------------------------------------------- /backend/src/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/key.rs -------------------------------------------------------------------------------- /backend/src/keymap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/keymap.rs -------------------------------------------------------------------------------- /backend/src/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/layer.rs -------------------------------------------------------------------------------- /backend/src/layout/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/layout/meta.rs -------------------------------------------------------------------------------- /backend/src/layout/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/layout/mod.rs -------------------------------------------------------------------------------- /backend/src/layout/physical_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/layout/physical_layout.rs -------------------------------------------------------------------------------- /backend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/lib.rs -------------------------------------------------------------------------------- /backend/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/localize.rs -------------------------------------------------------------------------------- /backend/src/matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/matrix.rs -------------------------------------------------------------------------------- /backend/src/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/mode.rs -------------------------------------------------------------------------------- /backend/src/nelson.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/nelson.rs -------------------------------------------------------------------------------- /backend/src/rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/backend/src/rect.rs -------------------------------------------------------------------------------- /data/com.system76.keyboardconfigurator.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/com.system76.keyboardconfigurator.gresource.xml -------------------------------------------------------------------------------- /data/icons/scalable/apps/com.system76.keyboardconfigurator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/icons/scalable/apps/com.system76.keyboardconfigurator.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/launch-keyboard-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/icons/scalable/status/launch-keyboard-not-found.svg -------------------------------------------------------------------------------- /data/system76_launch_1_default.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/system76_launch_1_default.hex -------------------------------------------------------------------------------- /data/system76_launch_2_default.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/system76_launch_2_default.hex -------------------------------------------------------------------------------- /data/system76_launch_heavy_1_default.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/system76_launch_heavy_1_default.hex -------------------------------------------------------------------------------- /data/system76_launch_lite_1_default.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/data/system76_launch_lite_1_default.hex -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/com.system76.pkexec.keyboardconfigurator.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/com.system76.pkexec.keyboardconfigurator.policy -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libsystem76-keyboard-configurator-dev.install: -------------------------------------------------------------------------------- 1 | usr/include 2 | -------------------------------------------------------------------------------- /debian/libsystem76-keyboard-configurator.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/libsystem76-keyboard-configurator.install -------------------------------------------------------------------------------- /debian/libsystem76-keyboard-configurator.trigger: -------------------------------------------------------------------------------- 1 | ldconfig -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/source/options -------------------------------------------------------------------------------- /debian/system76-keyboard-configurator.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/system76-keyboard-configurator.install -------------------------------------------------------------------------------- /debian/test-launch-system76-keyboard-configurator.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/debian/test-launch-system76-keyboard-configurator.install -------------------------------------------------------------------------------- /ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/ffi/build.rs -------------------------------------------------------------------------------- /ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/system76_keyboard_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/ffi/system76_keyboard_configurator.h -------------------------------------------------------------------------------- /ffi/system76_keyboard_configurator.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/ffi/system76_keyboard_configurator.pc.in -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/flake.nix -------------------------------------------------------------------------------- /i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n.toml -------------------------------------------------------------------------------- /i18n/cs/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/cs/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/cs/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/cs/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/cs/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/cs/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/da/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/da/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/da/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/da/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/da/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/da/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/de/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/de/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/de/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/de/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/de/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/de/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/en/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/en/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/en/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/en/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/en/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/en/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/es/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/es/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/es/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/es/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/es/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/es/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/fi/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fi/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/fi/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fi/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/fi/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fi/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/fr/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fr/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/fr/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fr/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/fr/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/fr/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/hu/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/hu/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/hu/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/hu/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/hu/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/hu/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/it/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/it/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/it/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/it/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/it/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/it/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/ko/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ko/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/ko/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ko/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/ko/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ko/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/nl/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/nl/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/nl/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/nl/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/nl/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/nl/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/pl/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pl/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/pl/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pl/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/pl/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pl/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/pt-BR/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pt-BR/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/pt-BR/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pt-BR/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/pt-BR/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/pt-BR/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/ru/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ru/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/ru/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ru/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/ru/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/ru/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/sl/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/sl/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/sl/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/sl/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/sl/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/sl/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /i18n/tr/system76_keyboard_configurator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/tr/system76_keyboard_configurator.ftl -------------------------------------------------------------------------------- /i18n/tr/system76_keyboard_configurator_backend.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/tr/system76_keyboard_configurator_backend.ftl -------------------------------------------------------------------------------- /i18n/tr/system76_keyboard_configurator_widgets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/i18n/tr/system76_keyboard_configurator_widgets.ftl -------------------------------------------------------------------------------- /layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts.py -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_81/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_81/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_81/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_81/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_81/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_83/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_83/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_83/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_83/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_83/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_86/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_86/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_86/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/14in_86/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/14in_86/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/15in_102/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/15in_102/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102_nkey/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/15in_102_nkey/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102_nkey/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/15in_102_nkey/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/15in_102_nkey/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA04/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/18H9LHA04/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA04/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA04/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/18H9LHA04/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA05/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/18H9LHA05/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA05/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/18H9LHA05/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/18H9LHA05/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_1/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_1/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_1/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_1/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_1/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_1/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_2/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_2/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_2/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_2/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_2/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_2/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_3/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_3/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_3/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_3/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_3/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_3/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_1/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_alpha_1/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_1/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_1/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_alpha_1/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_2/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_alpha_2/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_2/leds.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_alpha_2/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_alpha_2/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_1/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_1/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_1/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_1/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_1/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_1/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_3/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_3/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_3/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_3/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_heavy_3/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_heavy_3/physical.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_lite_1/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_lite_1/layout.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_lite_1/leds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_lite_1/leds.json -------------------------------------------------------------------------------- /layouts/keyboards/system76/launch_lite_1/physical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keyboards/system76/launch_lite_1/physical.json -------------------------------------------------------------------------------- /layouts/keymap/ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keymap/ec.json -------------------------------------------------------------------------------- /layouts/keymap/qmk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keymap/qmk.json -------------------------------------------------------------------------------- /layouts/keymap/qmk_legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/keymap/qmk_legacy.json -------------------------------------------------------------------------------- /layouts/picker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/picker.json -------------------------------------------------------------------------------- /layouts/system76/addw1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw1/default.json -------------------------------------------------------------------------------- /layouts/system76/addw1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw1/meta.json -------------------------------------------------------------------------------- /layouts/system76/addw2/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw2/default.json -------------------------------------------------------------------------------- /layouts/system76/addw2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw2/meta.json -------------------------------------------------------------------------------- /layouts/system76/addw3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw3/default.json -------------------------------------------------------------------------------- /layouts/system76/addw3/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw3/meta.json -------------------------------------------------------------------------------- /layouts/system76/addw4/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw4/default.json -------------------------------------------------------------------------------- /layouts/system76/addw4/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/addw4/meta.json -------------------------------------------------------------------------------- /layouts/system76/bonw14/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/bonw14/default.json -------------------------------------------------------------------------------- /layouts/system76/bonw14/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/bonw14/meta.json -------------------------------------------------------------------------------- /layouts/system76/bonw15/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/bonw15/default.json -------------------------------------------------------------------------------- /layouts/system76/bonw15/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/bonw15/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp10-b/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp10-b/default.json -------------------------------------------------------------------------------- /layouts/system76/darp10-b/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp10-b/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp10/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp10/default.json -------------------------------------------------------------------------------- /layouts/system76/darp10/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp10/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp11-b/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp11-b/default.json -------------------------------------------------------------------------------- /layouts/system76/darp11-b/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp11-b/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp11/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp11/default.json -------------------------------------------------------------------------------- /layouts/system76/darp11/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp11/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp5/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp5/default.json -------------------------------------------------------------------------------- /layouts/system76/darp5/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp5/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp6/default.json -------------------------------------------------------------------------------- /layouts/system76/darp6/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp6/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp7/default.json -------------------------------------------------------------------------------- /layouts/system76/darp7/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp7/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp8/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp8/default.json -------------------------------------------------------------------------------- /layouts/system76/darp8/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp8/meta.json -------------------------------------------------------------------------------- /layouts/system76/darp9/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp9/default.json -------------------------------------------------------------------------------- /layouts/system76/darp9/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/darp9/meta.json -------------------------------------------------------------------------------- /layouts/system76/galp3-c/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp3-c/default.json -------------------------------------------------------------------------------- /layouts/system76/galp3-c/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp3-c/meta.json -------------------------------------------------------------------------------- /layouts/system76/galp4/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp4/default.json -------------------------------------------------------------------------------- /layouts/system76/galp4/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp4/meta.json -------------------------------------------------------------------------------- /layouts/system76/galp5/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp5/default.json -------------------------------------------------------------------------------- /layouts/system76/galp5/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp5/meta.json -------------------------------------------------------------------------------- /layouts/system76/galp6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp6/default.json -------------------------------------------------------------------------------- /layouts/system76/galp6/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp6/meta.json -------------------------------------------------------------------------------- /layouts/system76/galp7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp7/default.json -------------------------------------------------------------------------------- /layouts/system76/galp7/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/galp7/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze15/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze15/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze15/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze15/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3050/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3050/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3050/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3050/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3060-b/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3060-b/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3060-b/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3060-b/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3060/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3060/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze16-3060/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze16-3060/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze17-3050/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze17-3050/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze17-3050/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze17-3050/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze17-3060-b/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze17-3060-b/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze17-3060-b/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze17-3060-b/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze18/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze18/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze18/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze18/meta.json -------------------------------------------------------------------------------- /layouts/system76/gaze20/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze20/default.json -------------------------------------------------------------------------------- /layouts/system76/gaze20/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/gaze20/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_1/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_1/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_2/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_2/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_2/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_3/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_3/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_3/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_alpha_1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_alpha_1/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_alpha_1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_alpha_1/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_alpha_2/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_alpha_2/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_alpha_2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_alpha_2/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_heavy_1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_heavy_1/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_heavy_1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_heavy_1/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_heavy_3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_heavy_3/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_heavy_3/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_heavy_3/meta.json -------------------------------------------------------------------------------- /layouts/system76/launch_lite_1/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_lite_1/default.json -------------------------------------------------------------------------------- /layouts/system76/launch_lite_1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/launch_lite_1/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp10/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp10/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp10/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp10/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp11/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp11/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp11/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp11/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp12/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp12/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp12/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp12/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp13-b/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp13-b/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp13-b/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp13-b/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp13/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp13/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp13/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp13/meta.json -------------------------------------------------------------------------------- /layouts/system76/lemp9/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp9/default.json -------------------------------------------------------------------------------- /layouts/system76/lemp9/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/lemp9/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp10/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp10/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp10/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp10/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp11/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp11/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp11/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp11/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp12/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp12/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp12/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp12/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp5/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp5/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp5/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp5/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp6/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp6/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp6/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp7/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp7/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp7/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp8/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp8/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp8/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp8/meta.json -------------------------------------------------------------------------------- /layouts/system76/oryp9/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp9/default.json -------------------------------------------------------------------------------- /layouts/system76/oryp9/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/oryp9/meta.json -------------------------------------------------------------------------------- /layouts/system76/serw13/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/serw13/default.json -------------------------------------------------------------------------------- /layouts/system76/serw13/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/layouts/system76/serw13/meta.json -------------------------------------------------------------------------------- /linux/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/linux/build.py -------------------------------------------------------------------------------- /linux/com.system76.keyboardconfigurator.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/linux/com.system76.keyboardconfigurator.appdata.xml -------------------------------------------------------------------------------- /linux/com.system76.keyboardconfigurator.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/linux/com.system76.keyboardconfigurator.desktop -------------------------------------------------------------------------------- /linux/com.system76.keyboardconfiguratorlaunchtest.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/linux/com.system76.keyboardconfiguratorlaunchtest.desktop -------------------------------------------------------------------------------- /linux/linuxdeploy-plugin-gtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/linux/linuxdeploy-plugin-gtk.sh -------------------------------------------------------------------------------- /macos/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/Info.plist.in -------------------------------------------------------------------------------- /macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/README.md -------------------------------------------------------------------------------- /macos/appdmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/appdmg.json -------------------------------------------------------------------------------- /macos/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/background.svg -------------------------------------------------------------------------------- /macos/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/build.py -------------------------------------------------------------------------------- /macos/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/deploy.py -------------------------------------------------------------------------------- /macos/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/launcher.sh -------------------------------------------------------------------------------- /macos/signing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/macos/signing.sh -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.70.0" 3 | -------------------------------------------------------------------------------- /screenshots/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/screenshots/screenshot-01.png -------------------------------------------------------------------------------- /src/about_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/about_dialog.rs -------------------------------------------------------------------------------- /src/backlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/backlight.rs -------------------------------------------------------------------------------- /src/configurator_app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/configurator_app.rs -------------------------------------------------------------------------------- /src/error_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/error_dialog.rs -------------------------------------------------------------------------------- /src/keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/keyboard.rs -------------------------------------------------------------------------------- /src/keyboard_layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/keyboard_layer.rs -------------------------------------------------------------------------------- /src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/localize.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/main_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/main_window.rs -------------------------------------------------------------------------------- /src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/page.rs -------------------------------------------------------------------------------- /src/picker/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/picker/mod.rs -------------------------------------------------------------------------------- /src/picker/picker_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/picker/picker_group.rs -------------------------------------------------------------------------------- /src/picker/picker_group_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/picker/picker_group_box.rs -------------------------------------------------------------------------------- /src/picker/picker_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/picker/picker_json.rs -------------------------------------------------------------------------------- /src/picker/picker_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/picker/picker_key.rs -------------------------------------------------------------------------------- /src/shortcuts_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/shortcuts_window.rs -------------------------------------------------------------------------------- /src/shortcuts_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/shortcuts_window.ui -------------------------------------------------------------------------------- /src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/src/testing.rs -------------------------------------------------------------------------------- /tools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/tools/Cargo.toml -------------------------------------------------------------------------------- /tools/src/pkgconfig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/tools/src/pkgconfig.rs -------------------------------------------------------------------------------- /widgets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/Cargo.toml -------------------------------------------------------------------------------- /widgets/examples/keyboard_color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/examples/keyboard_color.rs -------------------------------------------------------------------------------- /widgets/i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/i18n.toml -------------------------------------------------------------------------------- /widgets/src/choose_color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/choose_color.rs -------------------------------------------------------------------------------- /widgets/src/color_circle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/color_circle.rs -------------------------------------------------------------------------------- /widgets/src/color_wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/color_wheel.rs -------------------------------------------------------------------------------- /widgets/src/keyboard_backlight_widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/keyboard_backlight_widget.rs -------------------------------------------------------------------------------- /widgets/src/keyboard_color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/keyboard_color.rs -------------------------------------------------------------------------------- /widgets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/lib.rs -------------------------------------------------------------------------------- /widgets/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/localize.rs -------------------------------------------------------------------------------- /widgets/src/selected_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/widgets/src/selected_keys.rs -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/banner.svg -------------------------------------------------------------------------------- /windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/build.bat -------------------------------------------------------------------------------- /windows/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/build.py -------------------------------------------------------------------------------- /windows/dialog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/dialog.svg -------------------------------------------------------------------------------- /windows/gpl.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/gpl.rtf -------------------------------------------------------------------------------- /windows/keyboard-configurator.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/keyboard-configurator/HEAD/windows/keyboard-configurator.wxs --------------------------------------------------------------------------------