2021-09-19 13:35:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Copyright 2021 Johannes Marbach
|
2024-01-12 09:51:43 +01:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2021-09-19 13:35:53 +02:00
|
|
|
|
|
|
|
|
|
2024-01-02 20:43:40 +01:00
|
|
|
cd ../squeek2lvgl
|
2021-09-19 13:35:53 +02:00
|
|
|
pipenv install
|
|
|
|
|
pipenv run python squeek2lvgl.py \
|
|
|
|
|
--input us.yaml \
|
2023-10-23 21:14:59 +02:00
|
|
|
--name "US English" \
|
2021-09-19 13:35:53 +02:00
|
|
|
--input de.yaml \
|
2023-10-23 21:14:59 +02:00
|
|
|
--name "Deutsch" \
|
2021-09-19 13:35:53 +02:00
|
|
|
--input es.yaml \
|
2023-10-23 21:14:59 +02:00
|
|
|
--name "Español" \
|
2021-09-19 13:35:53 +02:00
|
|
|
--input fr.yaml \
|
2023-10-23 21:14:59 +02:00
|
|
|
--name "Français" \
|
|
|
|
|
--extra-top-row-base "1 2 3 4 5 6 7 8 9 0" \
|
|
|
|
|
--extra-top-row-upper "! @ # $ % ^ & * ( )" \
|
2024-01-02 20:43:40 +01:00
|
|
|
--output ../unl0kr \
|
2021-09-19 13:35:53 +02:00
|
|
|
--surround-space-with-arrows \
|
2021-09-20 13:05:12 +02:00
|
|
|
--shift-keycap '\xef\x8d\x9b'
|