Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2641a3b3d8 | |||
| b45039a813 | |||
| 04b105ab38 | |||
| 80388c0042 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,5 @@
|
|||||||
|
.zanata-cache/
|
||||||
_build
|
_build
|
||||||
po/squeekboard.pot
|
|
||||||
po/*.mo
|
|
||||||
TAGS
|
TAGS
|
||||||
tags
|
tags
|
||||||
vgdump
|
vgdump
|
||||||
|
|||||||
164
.gitlab-ci.yml
164
.gitlab-ci.yml
@ -1,15 +1,22 @@
|
|||||||
image: pureos/byzantium
|
image: debian:bullseye
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- test
|
- test
|
||||||
- deploy
|
|
||||||
|
.tags: &tags
|
||||||
|
tags:
|
||||||
|
- librem5
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- apt-get -y update
|
- apt-get -y update
|
||||||
- apt-get -y install ca-certificates
|
- apt-get -y install wget ca-certificates gnupg
|
||||||
|
- echo "deb [trusted=yes] http://ci.puri.sm/ bullseyeci main" > /etc/apt/sources.list.d/ci.list
|
||||||
|
- wget -O- https://ci.puri.sm/ci-repo.key | apt-key add -
|
||||||
|
- apt-get -y update
|
||||||
|
|
||||||
build_docs:
|
build_docs:
|
||||||
|
<<: *tags
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
@ -18,163 +25,128 @@ build_docs:
|
|||||||
- apt-get -y install python3-pip python3-sphinx
|
- apt-get -y install python3-pip python3-sphinx
|
||||||
- pip3 install recommonmark
|
- pip3 install recommonmark
|
||||||
- ./doc/build.sh _build
|
- ./doc/build.sh _build
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
build_meson:
|
build_meson:
|
||||||
image: debian:bookworm
|
tags:
|
||||||
|
- librem5
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- _build
|
- _build
|
||||||
expire_in: 3h
|
expire_in: 3h
|
||||||
script:
|
script:
|
||||||
- mv debian/control-newer debian/control
|
|
||||||
- apt-get -y build-dep .
|
- apt-get -y build-dep .
|
||||||
- meson . _build/ -Ddepdatadir=/usr/share -Dfind_orphans=true --werror
|
- meson . _build/ -Ddepdatadir=/usr/share --werror
|
||||||
- ninja -C _build install
|
- ninja -C _build install
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
build_deb:
|
build_deb:
|
||||||
|
tags:
|
||||||
|
- librem5
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- '*.deb'
|
- "*.deb"
|
||||||
script:
|
script:
|
||||||
- rm -f ../*.deb
|
- rm -f ../*.deb
|
||||||
- apt-get -y build-dep .
|
- apt-get -y build-dep .
|
||||||
- apt-get -y install devscripts
|
- apt-get -y install devscripts
|
||||||
- REV=$(git log -1 --format=%h)
|
|
||||||
- VER=$(dpkg-parsechangelog -SVersion)
|
|
||||||
- DEBFULLNAME="Librem5 CI"
|
|
||||||
- EMAIL="librem5-builds@lists.community.puri.sm"
|
|
||||||
- dch -v"$VER+librem5ci$CI_PIPELINE_ID.$REV" "$MSG"
|
|
||||||
- debuild -i -us -uc -b
|
- debuild -i -us -uc -b
|
||||||
- cp ../*.deb .
|
- cp ../*.deb .
|
||||||
|
|
||||||
|
build_deb:amber:
|
||||||
|
image: pureos/amber
|
||||||
|
tags:
|
||||||
|
- librem5
|
||||||
|
stage: build
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- "*.deb"
|
||||||
|
script:
|
||||||
|
- echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
|
||||||
|
- apt-get -y update
|
||||||
|
- rm -f ../*.deb
|
||||||
|
- apt-get -y build-dep .
|
||||||
|
- apt-get -y install devscripts
|
||||||
|
- debuild -i -us -uc -b
|
||||||
|
- cp ../*.deb .
|
||||||
|
|
||||||
|
build_deb:buster:
|
||||||
|
image: "debian:buster"
|
||||||
|
tags:
|
||||||
|
- librem5
|
||||||
|
stage: build
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- "*.deb"
|
||||||
|
script:
|
||||||
|
- echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
|
||||||
|
- apt-get -y update
|
||||||
|
- rm -f ../*.deb
|
||||||
|
- apt-get -y build-dep .
|
||||||
|
- apt-get -y install devscripts
|
||||||
|
- debuild -i -us -uc -b
|
||||||
|
- cp ../*.deb .
|
||||||
|
|
||||||
|
|
||||||
build_deb:arm64:
|
build_deb:arm64:
|
||||||
image: pureos/byzantium
|
|
||||||
tags:
|
tags:
|
||||||
- aarch64
|
- librem5:arm64
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- '*.deb'
|
- "*.deb"
|
||||||
script:
|
script:
|
||||||
- rm -f ../*.deb
|
- rm -f ../*.deb
|
||||||
- apt-get -y build-dep .
|
- apt-get -y build-dep .
|
||||||
- apt-get -y install devscripts
|
- apt-get -y install devscripts
|
||||||
- REV=$(git log -1 --format=%h)
|
|
||||||
- VER=$(dpkg-parsechangelog -SVersion)
|
|
||||||
- DEBFULLNAME="Librem5 CI"
|
|
||||||
- EMAIL="librem5-builds@lists.community.puri.sm"
|
|
||||||
- dch -v"$VER+librem5ci$CI_PIPELINE_ID.$REV" "$MSG"
|
|
||||||
- debuild -i -us -uc -b
|
- debuild -i -us -uc -b
|
||||||
- cp ../*.deb .
|
- cp ../*.deb .
|
||||||
|
|
||||||
build_deb:future:
|
build_deb:arm64_buster:
|
||||||
image: debian:bookworm
|
image: "debian:buster"
|
||||||
allow_failure: true
|
|
||||||
tags:
|
tags:
|
||||||
- aarch64
|
- librem5:arm64
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- '*.deb'
|
- "*.deb"
|
||||||
script:
|
script:
|
||||||
|
- echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
|
||||||
|
- apt-get -y update
|
||||||
- rm -f ../*.deb
|
- rm -f ../*.deb
|
||||||
- mv debian/control-newer debian/control
|
|
||||||
- apt-get -y build-dep .
|
- apt-get -y build-dep .
|
||||||
- apt-get -y install devscripts
|
- apt-get -y install devscripts
|
||||||
- REV=$(git log -1 --format=%h)
|
|
||||||
- VER=$(dpkg-parsechangelog -SVersion)
|
|
||||||
- DEBFULLNAME="Librem5 CI"
|
|
||||||
- EMAIL="librem5-builds@lists.community.puri.sm"
|
|
||||||
- dch -v"$VER+librem5ci$CI_PIPELINE_ID.$REV" "$MSG"
|
|
||||||
- debuild -i -us -uc -b
|
- debuild -i -us -uc -b
|
||||||
- cp ../*.deb .
|
- cp ../*.deb .
|
||||||
|
|
||||||
build_reference:
|
|
||||||
image: debian:bookworm
|
|
||||||
stage: build
|
|
||||||
needs:
|
|
||||||
- job: build_meson
|
|
||||||
artifacts: true
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- _build/doc
|
|
||||||
script:
|
|
||||||
- apt-get -y install cargo
|
|
||||||
- cd _build
|
|
||||||
- ../cargo.sh doc --no-deps --document-private-items
|
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
test_lintian:
|
test_lintian:
|
||||||
|
<<: *tags
|
||||||
stage: test
|
stage: test
|
||||||
needs:
|
dependencies:
|
||||||
- job: build_deb
|
- build_deb
|
||||||
artifacts: true
|
|
||||||
script:
|
script:
|
||||||
- apt-get -y install lintian
|
- apt-get -y install lintian
|
||||||
- lintian *.deb
|
- lintian *.deb
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
image: debian:bookworm
|
tags:
|
||||||
|
- librem5
|
||||||
stage: test
|
stage: test
|
||||||
needs:
|
needs:
|
||||||
- job: build_meson
|
- build_meson
|
||||||
artifacts: true
|
|
||||||
script:
|
script:
|
||||||
- mv debian/control-newer debian/control
|
|
||||||
- apt-get -y build-dep .
|
- apt-get -y build-dep .
|
||||||
- apt-get -y install clang-tidy
|
- apt-get -y install clang-tidy
|
||||||
- ninja -C _build test
|
- ninja -C _build test
|
||||||
- tools/style-check_build _build
|
- cd _build
|
||||||
except:
|
- clang-tidy --checks=-clang-diagnostic-missing-braces,readability-braces-around-statements, --warnings-as-errors=readability-braces-around-statements -extra-arg=-Wno-unknown-warning-option ../src/*.c ../eek/*.c ../eekboard/*.c
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
test_style:
|
|
||||||
stage: test
|
|
||||||
needs: []
|
|
||||||
script:
|
|
||||||
- apt-get -y build-dep .
|
|
||||||
- tools/style-check_source
|
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
check_release:
|
check_release:
|
||||||
|
<<: *tags
|
||||||
stage: test
|
stage: test
|
||||||
needs: []
|
|
||||||
only:
|
only:
|
||||||
refs:
|
refs:
|
||||||
- master
|
- master
|
||||||
script:
|
script:
|
||||||
- apt-get -y install git python3
|
- apt-get -y install git python3
|
||||||
- (head -n 1 ./debian/changelog && git tag) | ./debian/check_release.py
|
- (head -n 1 ./debian/changelog && git tag) | ./debian/check_release.py
|
||||||
except:
|
|
||||||
variables:
|
|
||||||
- $PKG_ONLY == "1"
|
|
||||||
|
|
||||||
pages:
|
|
||||||
stage: deploy
|
|
||||||
needs:
|
|
||||||
- build_docs
|
|
||||||
- build_reference
|
|
||||||
script:
|
|
||||||
- mv _build/ public/
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
only:
|
|
||||||
refs:
|
|
||||||
- master
|
|
||||||
|
|||||||
16
Cargo.deps
16
Cargo.deps
@ -1,17 +1,11 @@
|
|||||||
# Dependencies which change based on build flags
|
# Dependencies which change based on build flags
|
||||||
bitflags = "1.2.*"
|
bitflags = "1.2.*"
|
||||||
clap = { version = "2.33.*", default-features = false }
|
clap = { version = "2.33.*", default-features = false }
|
||||||
zbus = "1.0.*"
|
regex = { version = "1.3.*", default-features = false, features = ["std", "unicode-case"] }
|
||||||
zvariant = "2.0.*"
|
|
||||||
# Newer versions seem to confuse the version of Cargo on Debian Bullseye
|
|
||||||
zvariant_derive = "2.0.*"
|
|
||||||
|
|
||||||
[dependencies.cairo-rs]
|
[dependencies.cairo-rs]
|
||||||
version = "0.7.*"
|
version = "0.7.*"
|
||||||
|
|
||||||
[dependencies.cairo-sys-rs]
|
|
||||||
version = "0.9"
|
|
||||||
|
|
||||||
[dependencies.gdk]
|
[dependencies.gdk]
|
||||||
version = "0.11.*"
|
version = "0.11.*"
|
||||||
|
|
||||||
@ -23,14 +17,6 @@ features = ["v2_44"]
|
|||||||
version = "0.8.*"
|
version = "0.8.*"
|
||||||
features = ["v2_44"]
|
features = ["v2_44"]
|
||||||
|
|
||||||
[dependencies.glib-sys]
|
|
||||||
version = "*"
|
|
||||||
features = ["v2_44"]
|
|
||||||
|
|
||||||
[dependencies.gtk]
|
[dependencies.gtk]
|
||||||
version = "0.7.*"
|
version = "0.7.*"
|
||||||
features = ["v3_22"]
|
features = ["v3_22"]
|
||||||
|
|
||||||
[dependencies.gtk-sys]
|
|
||||||
version = "0.9"
|
|
||||||
features = ["v3_22"]
|
|
||||||
22
Cargo.deps.legacy
Normal file
22
Cargo.deps.legacy
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Dependencies which change based on build flags
|
||||||
|
bitflags = "1.0.*"
|
||||||
|
clap = { version = "2.32.*", default-features = false }
|
||||||
|
regex = { version = "1.1.*", default-features = false, features = ['use_std'] }
|
||||||
|
|
||||||
|
[dependencies.cairo-rs]
|
||||||
|
version = "0.5.*"
|
||||||
|
|
||||||
|
[dependencies.gdk]
|
||||||
|
version = "0.9.*"
|
||||||
|
|
||||||
|
[dependencies.gio]
|
||||||
|
version = "0.5.*"
|
||||||
|
features = ["v2_44"]
|
||||||
|
|
||||||
|
[dependencies.glib]
|
||||||
|
version = "0.6.*"
|
||||||
|
features = ["v2_44"]
|
||||||
|
|
||||||
|
[dependencies.gtk]
|
||||||
|
version = "0.5.*"
|
||||||
|
features = ["v3_22"]
|
||||||
@ -1,38 +0,0 @@
|
|||||||
# Dependencies and tools which change based on build flags
|
|
||||||
# For the newer-than-Byzantium config
|
|
||||||
|
|
||||||
bitflags = "1.3.*"
|
|
||||||
clap = { version = "4.*", features=["std"], default-features = false }
|
|
||||||
zbus = "1.9.*"
|
|
||||||
zvariant = "2.10.*"
|
|
||||||
# Newer versions seem to confuse the version of Cargo on Debian Bullseye
|
|
||||||
zvariant_derive = "2.10.*"
|
|
||||||
|
|
||||||
[dependencies.cairo-rs]
|
|
||||||
version = "0.14.*"
|
|
||||||
|
|
||||||
[dependencies.cairo-sys-rs]
|
|
||||||
version = "0.14.*"
|
|
||||||
|
|
||||||
[dependencies.gdk]
|
|
||||||
version = "0.14.*"
|
|
||||||
|
|
||||||
[dependencies.gio]
|
|
||||||
version = "0.14.*"
|
|
||||||
features = ["v2_58"]
|
|
||||||
|
|
||||||
[dependencies.glib]
|
|
||||||
version = "0.14.*"
|
|
||||||
features = ["v2_58"]
|
|
||||||
|
|
||||||
[dependencies.glib-sys]
|
|
||||||
version = "0.14.*"
|
|
||||||
features = ["v2_58"]
|
|
||||||
|
|
||||||
[dependencies.gtk]
|
|
||||||
version = "0.14.*"
|
|
||||||
features = ["v3_22"]
|
|
||||||
|
|
||||||
[dependencies.gtk-sys]
|
|
||||||
version = "0.14.*"
|
|
||||||
features = ["v3_22"]
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
# Dependencies which are only used with online, crates.io builds.
|
|
||||||
[patch.crates-io]
|
|
||||||
# Dependency was yanked, but gio 0.7 needs it.
|
|
||||||
fragile = { git = "https://source.puri.sm/dorota.czaplejewicz/fragile.git", tag = "0.3.0" }
|
|
||||||
306
Cargo.lock
generated
306
Cargo.lock
generated
@ -1,7 +1,5 @@
|
|||||||
# This file is automatically @generated by Cargo.
|
# This file is automatically @generated by Cargo.
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
version = 3
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atk"
|
name = "atk"
|
||||||
version = "0.7.0"
|
version = "0.7.0"
|
||||||
@ -28,24 +26,12 @@ dependencies = [
|
|||||||
"pkg-config",
|
"pkg-config",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "autocfg"
|
|
||||||
version = "1.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "1.2.1"
|
version = "1.2.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "byteorder"
|
|
||||||
version = "1.5.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cairo-rs"
|
name = "cairo-rs"
|
||||||
version = "0.7.1"
|
version = "0.7.1"
|
||||||
@ -73,27 +59,15 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cc"
|
name = "cc"
|
||||||
version = "1.0.90"
|
version = "1.0.66"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
|
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "cfg-if"
|
|
||||||
version = "0.1.10"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "cfg-if"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "2.33.4"
|
version = "2.33.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "826bf7bc84f9435630275cb8e802a4a0ec792b615969934bd16d42ffed10f207"
|
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"textwrap",
|
"textwrap",
|
||||||
@ -101,50 +75,16 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "derivative"
|
name = "dtoa"
|
||||||
version = "2.2.0"
|
version = "0.4.7"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
checksum = "88d7ed2934d741c6b37e33e3832298e8850b53fd2d2bea03873375596c7cea4e"
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 1.0.109",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "enumflags2"
|
|
||||||
version = "0.6.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
|
|
||||||
dependencies = [
|
|
||||||
"enumflags2_derive",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "enumflags2_derive"
|
|
||||||
version = "0.6.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 1.0.109",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "fastrand"
|
|
||||||
version = "1.9.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
||||||
dependencies = [
|
|
||||||
"instant",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fragile"
|
name = "fragile"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
source = "git+https://source.puri.sm/dorota.czaplejewicz/fragile.git?tag=0.3.0#51048ca11824279c2114c77fef5bcb950838fc09"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "05f8140122fa0d5dcb9fc8627cfce2b37cc1500f752636d46ea28bc26785c2f9"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gdk"
|
name = "gdk"
|
||||||
@ -317,31 +257,6 @@ dependencies = [
|
|||||||
"pkg-config",
|
"pkg-config",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hashbrown"
|
|
||||||
version = "0.12.3"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "indexmap"
|
|
||||||
version = "1.9.3"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
||||||
dependencies = [
|
|
||||||
"autocfg",
|
|
||||||
"hashbrown",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "instant"
|
|
||||||
version = "0.1.12"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if 1.0.0",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lazy_static"
|
name = "lazy_static"
|
||||||
version = "1.4.0"
|
version = "1.4.0"
|
||||||
@ -350,15 +265,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.153"
|
version = "0.2.82"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "linked-hash-map"
|
name = "linked-hash-map"
|
||||||
version = "0.5.6"
|
version = "0.5.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "maplit"
|
name = "maplit"
|
||||||
@ -376,19 +291,6 @@ dependencies = [
|
|||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "nix"
|
|
||||||
version = "0.17.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags",
|
|
||||||
"cc",
|
|
||||||
"cfg-if 0.1.10",
|
|
||||||
"libc",
|
|
||||||
"void",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pango"
|
name = "pango"
|
||||||
version = "0.7.0"
|
version = "0.7.0"
|
||||||
@ -418,37 +320,43 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pkg-config"
|
name = "pkg-config"
|
||||||
version = "0.3.30"
|
version = "0.3.19"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "proc-macro-crate"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
|
|
||||||
dependencies = [
|
|
||||||
"toml",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proc-macro2"
|
name = "proc-macro2"
|
||||||
version = "1.0.78"
|
version = "1.0.24"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
|
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"unicode-ident",
|
"unicode-xid",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "quote"
|
name = "quote"
|
||||||
version = "1.0.35"
|
version = "1.0.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "regex"
|
||||||
|
version = "1.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
|
||||||
|
dependencies = [
|
||||||
|
"regex-syntax",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "regex-syntax"
|
||||||
|
version = "0.6.22"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rs"
|
name = "rs"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
@ -464,89 +372,53 @@ dependencies = [
|
|||||||
"gtk",
|
"gtk",
|
||||||
"gtk-sys",
|
"gtk-sys",
|
||||||
"maplit",
|
"maplit",
|
||||||
|
"regex",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_yaml",
|
"serde_yaml",
|
||||||
"xkbcommon",
|
"xkbcommon",
|
||||||
"zbus",
|
|
||||||
"zvariant",
|
|
||||||
"zvariant_derive",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "ryu"
|
|
||||||
version = "1.0.17"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "scoped-tls"
|
|
||||||
version = "1.0.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "1.0.197"
|
version = "1.0.118"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
|
checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_derive"
|
name = "serde_derive"
|
||||||
version = "1.0.197"
|
version = "1.0.118"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
|
checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"syn 2.0.52",
|
"syn",
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde_repr"
|
|
||||||
version = "0.1.18"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 2.0.52",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_yaml"
|
name = "serde_yaml"
|
||||||
version = "0.8.26"
|
version = "0.8.15"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
|
checksum = "971be8f6e4d4a47163b405a3df70d14359186f9ab0f3a3ec37df144ca1ce089f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"indexmap",
|
"dtoa",
|
||||||
"ryu",
|
"linked-hash-map",
|
||||||
"serde",
|
"serde",
|
||||||
"yaml-rust",
|
"yaml-rust",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "1.0.109"
|
version = "1.0.58"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
checksum = "cc60a3d73ea6594cd712d830cc1f0390fd71542d8c8cd24e70cc54cdfd5e05d5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"unicode-ident",
|
"unicode-xid",
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "syn"
|
|
||||||
version = "2.0.52"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"unicode-ident",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -558,32 +430,17 @@ dependencies = [
|
|||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "toml"
|
|
||||||
version = "0.5.11"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
||||||
dependencies = [
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unicode-ident"
|
|
||||||
version = "1.0.12"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-width"
|
name = "unicode-width"
|
||||||
version = "0.1.11"
|
version = "0.1.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "void"
|
name = "unicode-xid"
|
||||||
version = "1.0.2"
|
version = "0.2.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
|
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winapi"
|
name = "winapi"
|
||||||
@ -609,9 +466,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xkbcommon"
|
name = "xkbcommon"
|
||||||
version = "0.4.1"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "032ed00cc755c31221bbd6aaf9fa4196a01bf33bca185f9316e14f26d28c28cf"
|
checksum = "fda0ea5f7ddabd51deeeda7799bee06274112f577da7dd3d954b8eda731b2fce"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"memmap",
|
"memmap",
|
||||||
@ -625,56 +482,3 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"linked-hash-map",
|
"linked-hash-map",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "zbus"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1cb97c72cbfd5c7537ca730eeb810da7348f345ba67ab7673bcbe0d81c076427"
|
|
||||||
dependencies = [
|
|
||||||
"byteorder",
|
|
||||||
"derivative",
|
|
||||||
"enumflags2",
|
|
||||||
"fastrand",
|
|
||||||
"nix",
|
|
||||||
"scoped-tls",
|
|
||||||
"serde",
|
|
||||||
"serde_repr",
|
|
||||||
"zbus_macros",
|
|
||||||
"zvariant",
|
|
||||||
"zvariant_derive",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "zbus_macros"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "c0c1f2a20a4cb90922b44d3bebd232b246e52b3dd95ed5bea8aec83cde3a5a8a"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro-crate",
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 1.0.109",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "zvariant"
|
|
||||||
version = "2.0.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f0bf85e67d1a3780cb1c56c80227532354f21907cba14805a773eb507b444580"
|
|
||||||
dependencies = [
|
|
||||||
"byteorder",
|
|
||||||
"enumflags2",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "zvariant_derive"
|
|
||||||
version = "2.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d68726e8c12757384a8d1485080527e263dea67d91f19e97cd71b9292f22d7c5"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 1.0.109",
|
|
||||||
]
|
|
||||||
|
|||||||
1235
Cargo.lock.newer
1235
Cargo.lock.newer
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rs"
|
name = "rs"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "rs"
|
name = "rs"
|
||||||
@ -17,16 +16,23 @@ path = "@path@/src/bin/test_layout.rs"
|
|||||||
name = "test_layout"
|
name = "test_layout"
|
||||||
path = "@path@/examples/test_layout.rs"
|
path = "@path@/examples/test_layout.rs"
|
||||||
|
|
||||||
[[example]]
|
|
||||||
name = "find_orphan_layouts"
|
|
||||||
path = "@path@/examples/find_orphan_layouts.rs"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
glib_v0_14 = []
|
gio_v0_5 = []
|
||||||
zbus_v1_5 = []
|
gtk_v0_5 = []
|
||||||
clap_v4 = []
|
rustc_less_1_36 = []
|
||||||
|
|
||||||
# Dependencies which don't change based on build flags
|
# Dependencies which don't change based on build flags
|
||||||
|
[dependencies.cairo-sys-rs]
|
||||||
|
version = ""
|
||||||
|
|
||||||
|
[dependencies.glib-sys]
|
||||||
|
version = ""
|
||||||
|
features = ["v2_44"]
|
||||||
|
|
||||||
|
[dependencies.gtk-sys]
|
||||||
|
version = ""
|
||||||
|
features = ["v3_22"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
maplit = "1.0.*"
|
maplit = "1.0.*"
|
||||||
serde = { version = "1.0.*", features = ["derive"] }
|
serde = { version = "1.0.*", features = ["derive"] }
|
||||||
|
|||||||
59
NEWS.md
59
NEWS.md
@ -1,59 +0,0 @@
|
|||||||
1.23.0
|
|
||||||
------------------
|
|
||||||
|
|
||||||
New or updated translations:
|
|
||||||
- Belarusian
|
|
||||||
- Haitian Creole
|
|
||||||
|
|
||||||
New layouts:
|
|
||||||
- French Canadian (QWERTY + accented letters)
|
|
||||||
- German terminal-layout
|
|
||||||
- Spanish terminal-layout
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
- Fixed Persian and Swiss layouts
|
|
||||||
- Fixed various small style-issues in many layouts
|
|
||||||
- Improved the US-terminal-layout
|
|
||||||
|
|
||||||
1.22.0 "Superposition"
|
|
||||||
------------------
|
|
||||||
|
|
||||||
New or updated translations:
|
|
||||||
- Basque
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
- fixed panel sizing when scaling
|
|
||||||
- fixed panel sizing when rotating
|
|
||||||
- fixed Dvorak terminal layout
|
|
||||||
|
|
||||||
1.21.0 "Expected value"
|
|
||||||
------------------
|
|
||||||
|
|
||||||
New or updated translations:
|
|
||||||
- Hindi
|
|
||||||
- Czech
|
|
||||||
- German
|
|
||||||
|
|
||||||
New layouts:
|
|
||||||
- wide Swedish
|
|
||||||
- Hungarian
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
- use a custom font for gr+polytonic, where the default is unreadable
|
|
||||||
- require newer Rust
|
|
||||||
- fixed panel sizing when rotating
|
|
||||||
- internal improvements.
|
|
||||||
|
|
||||||
1.20.0 "PID controller"
|
|
||||||
------------------
|
|
||||||
|
|
||||||
New translations:
|
|
||||||
- Greek
|
|
||||||
- Croatian
|
|
||||||
|
|
||||||
New layouts:
|
|
||||||
- US Dvorak terminal
|
|
||||||
|
|
||||||
Improvements:
|
|
||||||
- forcing the panel to hide now takes effect immediately
|
|
||||||
- Squeekboard icon will present itself when other applications need to show it
|
|
||||||
41
README.md
41
README.md
@ -1,7 +1,7 @@
|
|||||||
*squeekboard* - a Wayland on-screen keyboard
|
*squeekboard* - a Wayland virtual keyboard
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
*Squeekboard* is a keyboard-shaped input method supporting Wayland, built primarily for the *Librem 5* phone.
|
*Squeekboard* is a virtual keyboard supporting Wayland, built primarily for the *Librem 5* phone.
|
||||||
|
|
||||||
It squeaks because some Rust got inside.
|
It squeaks because some Rust got inside.
|
||||||
|
|
||||||
@ -11,24 +11,20 @@ Features
|
|||||||
### Present
|
### Present
|
||||||
|
|
||||||
- GTK3
|
- GTK3
|
||||||
- Custom keyboard layouts defined in yaml
|
- Custom yaml-defined keyboards
|
||||||
- Input purpose dependent keyboard layouts
|
|
||||||
- DBus interface to show and hide
|
- DBus interface to show and hide
|
||||||
- Use Wayland input method protocol to submit text
|
- Use Wayland input method protocol to show and hide
|
||||||
- Use Wayland virtual keyboard protocol
|
- Use Wayland virtual keyboard protocol
|
||||||
|
|
||||||
|
### Temporarily dropped
|
||||||
|
|
||||||
|
- A settings interface
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
- Text prediction/correction
|
- Use Wayland input method protocol
|
||||||
- Use preedit
|
|
||||||
- Submit actions like "next field" using a future Wayland protocol
|
|
||||||
- Pick up DBus interface files from /usr/share
|
- Pick up DBus interface files from /usr/share
|
||||||
|
|
||||||
Creating layouts
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
If you want to work on layouts, check out the [guide](doc/tutorial.md).
|
|
||||||
|
|
||||||
Building
|
Building
|
||||||
--------
|
--------
|
||||||
|
|
||||||
@ -39,7 +35,7 @@ See `.gitlab-ci.yml` or run `apt-get build-dep .`
|
|||||||
### Build from git repo
|
### Build from git repo
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone https://gitlab.gnome.org/World/Phosh/squeekboard.git
|
$ git clone https://source.puri.sm/Librem5/squeekboard.git
|
||||||
$ cd squeekboard
|
$ cd squeekboard
|
||||||
$ mkdir _build
|
$ mkdir _build
|
||||||
$ meson _build/
|
$ meson _build/
|
||||||
@ -58,32 +54,19 @@ $ cd ../build/
|
|||||||
$ src/squeekboard
|
$ src/squeekboard
|
||||||
```
|
```
|
||||||
|
|
||||||
Squeekboard's panel will appear whenever a compatible application requests an input method. Click a text field in any GTK application, like `python3 ./tools/entry.py`.
|
|
||||||
|
|
||||||
Squeekboard honors the gnome "screen-keyboard-enabled" setting. Either enable this through gnome-settings under accessibility or run:
|
Squeekboard honors the gnome "screen-keyboard-enabled" setting. Either enable this through gnome-settings under accessibility or run:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled true
|
$ gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled true
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, force panel visibility manually with:
|
To make the keyboard show you can use either an application that does so automatically, like a text editor or `python3 ./tests/entry.py`, or you can manually trigger it with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
|
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
|
||||||
```
|
```
|
||||||
|
|
||||||
### What the compositor has to support
|
|
||||||
|
|
||||||
A compatible compositor has to support the protocols:
|
|
||||||
|
|
||||||
- layer-shell
|
|
||||||
- virtual-keyboard-v1
|
|
||||||
|
|
||||||
It's strongly recommended to support:
|
|
||||||
|
|
||||||
- input-method-v2
|
|
||||||
|
|
||||||
Developing
|
Developing
|
||||||
----------
|
----------
|
||||||
|
|
||||||
See [`doc/hacking.md`](doc/hacking.md) for this copy, or the [official documentation](https://world.pages.gitlab.gnome.org/Phosh/squeekboard) for the current release.
|
See [`doc/hacking.md`](doc/hacking.md) for this copy, or the [official documentation](https://developer.puri.sm/projects/squeekboard/) for the current release.
|
||||||
|
|||||||
@ -34,7 +34,7 @@ if out_path:
|
|||||||
i = args.index(out_path)
|
i = args.index(out_path)
|
||||||
args.pop(i)
|
args.pop(i)
|
||||||
|
|
||||||
subprocess.run(['sh', "{}/cargo.sh".format(source_dir.as_posix()), 'build']
|
subprocess.run(['sh', "{}/cargo.sh".format(shlex.quote(source_dir.as_posix())), 'build']
|
||||||
+ args,
|
+ args,
|
||||||
check=True)
|
check=True)
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ if out_path:
|
|||||||
out_basename = out_path.name
|
out_basename = out_path.name
|
||||||
filename = filename or out_basename
|
filename = filename or out_basename
|
||||||
subprocess.run(['cp', '-a',
|
subprocess.run(['cp', '-a',
|
||||||
'./{}/{}'.format(binary_dir, filename),
|
'./{}/{}'.format(shlex.quote(binary_dir), shlex.quote(filename)),
|
||||||
out_path],
|
out_path],
|
||||||
check=True)
|
check=True)
|
||||||
|
|
||||||
|
|||||||
@ -1,39 +0,0 @@
|
|||||||
/* Theme independent styles */
|
|
||||||
|
|
||||||
sq_view {
|
|
||||||
font-family: cantarell, sans-serif;
|
|
||||||
font-size: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Becomes readable with a special font */
|
|
||||||
sq_view.gr_polytonic {
|
|
||||||
font-family: GFSDidotClassic, cantarell, sans-serif;
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_button {
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_view.wide sq_button {
|
|
||||||
margin: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_button.latched,
|
|
||||||
sq_button.locked {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_button.action {
|
|
||||||
font-size: 0.75em;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_button.small {
|
|
||||||
font-size: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
sq_view.pin sq_button {
|
|
||||||
border-radius: 0px;
|
|
||||||
margin: 1px 1px 1px 1px;
|
|
||||||
}
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
|
||||||
<path d="M 3,0.5 V 1 c 2.5,0 4.5,1 4.5,2 v 12.5 h 1 V 3 c 0,-1 2,-2 4.5,-2 V 0.5 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 231 B |
@ -1,84 +0,0 @@
|
|||||||
# Armenian layout created by Norayr Chilingarian
|
|
||||||
# Yerevan
|
|
||||||
# Oct 2021
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 32, height: 32 }
|
|
||||||
spaceline: { width: 142, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "՝ է թ փ ձ ջ ւ և ռ չ ճ ֊ ժ"
|
|
||||||
- "ք ո ե ր տ ը ւ ի օ պ խ ծ շ"
|
|
||||||
- "ա ս դ ֆ գ հ յ կ լ ․"
|
|
||||||
- "Shift_L զ ղ ց վ բ ն մ ՛ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
upper:
|
|
||||||
- "՝ Է Թ Փ Ձ Ջ Ւ և Ռ Չ Ճ — Ժ"
|
|
||||||
- "Ք Ո Ե Ր Տ Ը Ւ Ի Օ Պ Խ Ծ Շ"
|
|
||||||
- "Ա Ս Դ Ֆ Գ Հ Յ Կ Լ ։"
|
|
||||||
- "Shift_L Զ Ղ Ց Վ Բ Ն Մ ՞ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
numbers:
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
|
||||||
- "* # $ / & - _ + ( )"
|
|
||||||
- "© ® £ € ¥ ^ ° @ { }"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ԱԲԳ"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
@ -1,84 +0,0 @@
|
|||||||
# Armenian layout created by Norayr Chilingarian
|
|
||||||
# Yerevan
|
|
||||||
# Oct 2021
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 32, height: 32 }
|
|
||||||
spaceline: { width: 142, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "՝ ֆ ձ ֊ , ։ ՞ ․ ՛ ) օ է ղ"
|
|
||||||
- "ճ փ բ ս մ ո ւ կ ը թ ծ ց »"
|
|
||||||
- "ջ վ գ ե ա ն ի տ հ պ ր"
|
|
||||||
- "Shift_L ժ դ չ յ զ լ ք խ շ ռ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
upper:
|
|
||||||
- "՜ Ֆ Ձ — $ … ՟ և ՚ ( Օ Է Ղ"
|
|
||||||
- "Ճ Փ Բ Ս Մ Ո Ւ Կ Ը Թ Ծ Ց «"
|
|
||||||
- "Ջ Վ Գ Ե Ա Ն Ի Տ Հ Պ Պ Ր"
|
|
||||||
- "Shift_L Ժ Դ Չ Յ Զ Լ Ք Խ Շ Ռ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
numbers:
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
|
||||||
- "* # $ / & - _ + ( )"
|
|
||||||
- "© ® £ € ¥ ^ ° @ { }"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ԱԲԳ"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
# Maintained by: Khaled Eldoheiri <khalid@kdehairy.com>
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 32.66, height: 52 }
|
|
||||||
altline: { width: 48.99, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 195.96, height: 52 }
|
|
||||||
special: { width: 35.66, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "ذ ض ص ث ق ف غ ع خ ح ج"
|
|
||||||
- "ش س ي ب ل ا ت ن م ك ط"
|
|
||||||
- "Shift_L ء ؤ ر ة و ز ظ د BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
extra:
|
|
||||||
- "ذ ض ص ث ق لإ إ ع خ ح ج"
|
|
||||||
- "ش س ى ب لأ أ ت ن م ك ط"
|
|
||||||
- "Shift_L ئ لآ لا ه آ ز ظ د BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols ، \" ' : ؛ ! ؟ BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
|
||||||
- "show_numbers \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "extra"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ض"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
# Maintained by: Khaled Eldoheiri <khalid@kdehairy.com>
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 49, height: 42 }
|
|
||||||
altline: { width: 73.5, height: 42 }
|
|
||||||
wide: { width: 108, height: 42 }
|
|
||||||
spaceline: { width: 324, height: 42 }
|
|
||||||
special: { width: 49, height: 42 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "ذ ض ص ث ق ف غ ع خ ح ج"
|
|
||||||
- "ش س ي ب ل ا ت ن م ك ط"
|
|
||||||
- "Shift_L ء ؤ ر ة و ز ظ د BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
extra:
|
|
||||||
- "ذ ض ص ث ق لإ إ ع خ ح ج"
|
|
||||||
- "ش س ى ب لأ أ ت ن م ك ط"
|
|
||||||
- "Shift_L ئ لآ لا ه آ ز ظ د BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols ، \" ' : ؛ ! ؟ BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
|
||||||
- "show_numbers \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "extra"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ض"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
@ -63,7 +63,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -63,7 +63,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -1,78 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 32.72, height: 52 }
|
|
||||||
altline: { width: 47, height: 52 }
|
|
||||||
wide: { width: 49.09, height: 52 }
|
|
||||||
spaceline: { width: 185, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "я в е р т ъ у и о п ю"
|
|
||||||
- "а с д ф г х й к л ш щ"
|
|
||||||
- "Shift_L з ь ц ж б н м ч BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
upper:
|
|
||||||
- "Я В Е Р Т Ъ У И О П Ю"
|
|
||||||
- "А С Д Ф Г Х Й К Л Ш Щ"
|
|
||||||
- "Shift_L З Ь Ц Ж Б Н М Ч BackSpace"
|
|
||||||
- "show_numbers preferences space , Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space Return"
|
|
||||||
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -8,19 +8,19 @@ outlines:
|
|||||||
|
|
||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "у е и ш щ к с д з ц б"
|
- "я в е р т ъ у и о п ю"
|
||||||
- "ь я а о ж г т н в м ч"
|
- "а с д ф г х й к л ш щ"
|
||||||
- "Shift_L ю й ъ ф х п р л BackSpace"
|
- "Shift_L з ь ц ж б н м ч BackSpace"
|
||||||
- "show_numbers preferences space . Return"
|
- "show_numbers preferences space . Return"
|
||||||
upper:
|
upper:
|
||||||
- "У Е И Ш Щ К С Д З Ц Б"
|
- "Я В Е Р Т Ъ У И О П Ю"
|
||||||
- "Ь Я А О Ж Г Т Н В М Ч"
|
- "А С Д Ф Г Х Й К Л Ш Щ"
|
||||||
- "Shift_L Ю Й Ъ Ф Х П Р Л BackSpace"
|
- "Shift_L З Ь Ц Ж Б Н М Ч BackSpace"
|
||||||
- "show_numbers preferences space , Return"
|
- "show_numbers preferences space , Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
- "1 2 3 4 5 6 7 8 9 0"
|
||||||
- "@ # € % & - _ + ( )"
|
- "@ # € % & - _ + ( )"
|
||||||
- "show_symbols , \" ' colon ; ! ? ѝ BackSpace"
|
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
||||||
- "show_letters preferences space Return"
|
- "show_letters preferences space Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
- "~ ` | · √ π τ ÷ × ¶"
|
||||||
@ -59,7 +59,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -1,93 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 142, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # $ % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê ë î ï ô"
|
|
||||||
- "ù û À Â Ç É È Ê Î Ô"
|
|
||||||
- "show_numbers_from_symbols ' ! ? . , BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: show_prefs
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,73 +0,0 @@
|
|||||||
# Maintained by Patrick Jörg <patrickjoerg@gmx.ch>. No Copyright, enjoy!
|
|
||||||
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 48, height: 52 }
|
|
||||||
wide: { width: 59, height: 52 }
|
|
||||||
spaceline: { width: 70, height: 52 }
|
|
||||||
special: { width: 28, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p ü"
|
|
||||||
- "a s d f g h j k l ö ä"
|
|
||||||
- "Shift_L y x c v b n m BackSpace"
|
|
||||||
- "show_numbers ? ! preferences ' space , . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P Ü"
|
|
||||||
- "A S D F G H J K L Ö Ä"
|
|
||||||
- "Shift_L Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers - _ preferences \" space , . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ * + - = ( ) ~ < >"
|
|
||||||
- "show_symbols # & / \\ √ ; : BackSpace"
|
|
||||||
- "show_letters ? ! preferences _ space , . Return"
|
|
||||||
symbols:
|
|
||||||
- "€ $ £ ¥ % | § µ [ ]"
|
|
||||||
- "© ® § ` ^ { } · ¡ ¿"
|
|
||||||
- "show_numbers « » ÷ × “ ” „ BackSpace"
|
|
||||||
- "show_letters preferences - space , . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,84 +0,0 @@
|
|||||||
# Maintained by: Jordi Bossy <jordi@bossy.space>. No Copyright, enjoy!
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 48, height: 52 }
|
|
||||||
wide: { width: 59, height: 52 }
|
|
||||||
spaceline: { width: 70, height: 52 }
|
|
||||||
special: { width: 28, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p"
|
|
||||||
- "a s d f g h j k l ?"
|
|
||||||
- "Shift_L y x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences ' space , . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P"
|
|
||||||
- "A S D F G H J K L !"
|
|
||||||
- "Shift_L Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences \" space , . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ * + - = ( ) ~ < >"
|
|
||||||
- "show_symbols # & / \\ √ ; : BackSpace"
|
|
||||||
- "show_letters show_eschars preferences _ space , . Return"
|
|
||||||
symbols:
|
|
||||||
- "€ $ £ ¥ % | § µ [ ]"
|
|
||||||
- "© ® § ` ^ { } · ¡ ¿"
|
|
||||||
- "show_numbers « » ÷ × “ ” „ BackSpace"
|
|
||||||
- "show_letters show_eschars preferences - space , . Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters show_eschars preferences ñ Ñ space ° ß Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "Ââ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,95 +0,0 @@
|
|||||||
# Maintained by: Jordy Bossy <jordi@bossy.space>
|
|
||||||
# and Patrick Jörg <patrickjoerg@gmx.ch>. No Copyright, enjoy!
|
|
||||||
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 58 }
|
|
||||||
doublewidth: { width: 70.66, height: 58 }
|
|
||||||
altline: { width: 52.8, height: 58 }
|
|
||||||
wide: { width: 64.9, height: 58 }
|
|
||||||
spaceline: { width: 116.67, height: 58 }
|
|
||||||
special: { width: 30.41, height: 58 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p ü"
|
|
||||||
- "a s d f g h j k l ö ä"
|
|
||||||
- "Shift_L y x c v b n m ' BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences Space , . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P Ü"
|
|
||||||
- "A S D F G H J K L Ö Ä"
|
|
||||||
- "Shift_L Y X C V B N M \" BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences Space , . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0 ^"
|
|
||||||
- "* + - = ( ) ~ < > ! ?"
|
|
||||||
- "show_symbols _ # & / \\ √ ; : BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space , . Return"
|
|
||||||
symbols:
|
|
||||||
- "€ $ £ ¥ % | § µ [ ]"
|
|
||||||
- "© ® § ` { } @ · ¡ ¿"
|
|
||||||
- "show_numbers « » ÷ × “ ” „ BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space , . Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê î ô ù û ñ"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û Ñ"
|
|
||||||
- "show_numbers æ œ ä ë ï ö ü ß BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space ° Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "Ââ"
|
|
||||||
Space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
°:
|
|
||||||
outline: "doublewidth"
|
|
||||||
"|":
|
|
||||||
outline: "doublewidth"
|
|
||||||
"}":
|
|
||||||
outline: "doublewidth"
|
|
||||||
×:
|
|
||||||
outline: "doublewidth"
|
|
||||||
@ -1,101 +0,0 @@
|
|||||||
# Maintained by: Jordy Bossy <jordy@bossy.space>
|
|
||||||
# and Patrick Jörg <patrickjoerg@gmx.ch>. No Copyright, enjoy!
|
|
||||||
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 48, height: 42 }
|
|
||||||
doublewidth: { width: 96, height: 42 }
|
|
||||||
narrow: { width: 33, height: 42 }
|
|
||||||
large: { width: 66, height: 42 }
|
|
||||||
altline: { width: 72, height: 42 }
|
|
||||||
wide: { width: 108, height: 42 }
|
|
||||||
spaceline: { width: 162, height: 42 }
|
|
||||||
special: { width: 48, height: 42 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p ü"
|
|
||||||
- "a s d f g h j k l ö ä"
|
|
||||||
- "Shift_L y x c v b n m ' BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences Space , . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P Ü"
|
|
||||||
- "A S D F G H J K L Ö Ä"
|
|
||||||
- "Shift_L Y X C V B N M \" BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences Space , . Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0 ^"
|
|
||||||
- "* + - = ( ) ~ < > ! ?"
|
|
||||||
- "show_symbols _ # & / \\ √ ; : BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space , . Return"
|
|
||||||
symbols:
|
|
||||||
- "€ $ £ ¥ % | § µ [ ]"
|
|
||||||
- "© ® § ` { } @ · ¡ ¿"
|
|
||||||
- "show_numbers « » ÷ × “ ” „ BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space , . Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê î ô ù û ñ"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û Ñ"
|
|
||||||
- "show_numbers æ œ ä ë ï ö ü ß BackSpace"
|
|
||||||
- "show_letters show_eschars preferences Space ° Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "Ââ"
|
|
||||||
Space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
°:
|
|
||||||
outline: "large"
|
|
||||||
".":
|
|
||||||
outline: "narrow"
|
|
||||||
",":
|
|
||||||
outline: "narrow"
|
|
||||||
"|":
|
|
||||||
outline: "doublewidth"
|
|
||||||
"}":
|
|
||||||
outline: "doublewidth"
|
|
||||||
×:
|
|
||||||
outline: "doublewidth"
|
|
||||||
@ -75,7 +75,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -75,7 +75,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -75,7 +75,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -75,7 +75,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -59,7 +59,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
@ -71,7 +71,7 @@ buttons:
|
|||||||
lock_view: "eschars"
|
lock_view: "eschars"
|
||||||
unlock_view: "base"
|
unlock_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "Ää"
|
label: "äÄ"
|
||||||
space:
|
space:
|
||||||
outline: "spaceline"
|
outline: "spaceline"
|
||||||
label: " "
|
label: " "
|
||||||
|
|||||||
@ -59,7 +59,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
@ -71,7 +71,7 @@ buttons:
|
|||||||
lock_view: "eschars"
|
lock_view: "eschars"
|
||||||
unlock_view: "base"
|
unlock_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "Ää"
|
label: "äÄ"
|
||||||
space:
|
space:
|
||||||
outline: "spaceline"
|
outline: "spaceline"
|
||||||
text: " "
|
text: " "
|
||||||
|
|||||||
@ -3,6 +3,7 @@ outlines:
|
|||||||
default: { width: 32, height: 52 }
|
default: { width: 32, height: 52 }
|
||||||
altline: { width: 48.39024, height: 52 }
|
altline: { width: 48.39024, height: 52 }
|
||||||
wide: { width: 62, height: 52 }
|
wide: { width: 62, height: 52 }
|
||||||
|
outline7: { width: 88.97561, height: 52 }
|
||||||
spaceline: { width: 150.5853, height: 52 }
|
spaceline: { width: 150.5853, height: 52 }
|
||||||
|
|
||||||
views:
|
views:
|
||||||
|
|||||||
@ -1,82 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 106.67, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
large: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space at period Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space at period Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # $ % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space at period Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space at period Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
at:
|
|
||||||
outline: "large"
|
|
||||||
text: "@"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
period:
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
@ -1,80 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 104, height: 52 }
|
|
||||||
altline: { width: 80, height: 52 }
|
|
||||||
narrow: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "😀 😁 😅 😂 😊 😇 🙃"
|
|
||||||
- "😍 😘 😋 😜 😎 🥳 😔"
|
|
||||||
- "😢 😭 😡 😱 🤔 😬 🙄"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
two:
|
|
||||||
- "🤩 🤨 🤓 😴 🤢 🤮 😈"
|
|
||||||
- "💩 🙌 👏 👍 👎 👌 👋"
|
|
||||||
- "💪 🖕 🙏 💋 🤦♀️ 🤷♀️ 💃"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
three:
|
|
||||||
- "🐶 🐱 🐯 🙈 🐴 🦄 🌳"
|
|
||||||
- "🍀 🌹 💫 ⭐️ ✨ 💥 🔥"
|
|
||||||
- "🌈 ☀️ 🌤 🌧 ⛄️ ☂️ 🌊"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
four:
|
|
||||||
- "🍎 🍓 🍑 🍍 🍆 🥑 🥦"
|
|
||||||
- "🍕 🎂 🍫 🍿 🍻 🍾 🍽"
|
|
||||||
- "⚽️ 🏀 🏓 🏆 🎹 🎸 🎯"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
five:
|
|
||||||
- "🚗 🚌 🚲 🚄 🚂 ✈️ 🛰"
|
|
||||||
- "🚀 🛸 🚁 🚦 🏝 🏔 ⛺️"
|
|
||||||
- "🏠 🏢 🏥 🏛 🛤 🌅 🎇"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
six:
|
|
||||||
- "⌚️ 📱 💻 🖥 🖨 🕹 ✉️"
|
|
||||||
- "📞 ☎️ ⏰ ⏳ 📈 📉 📌"
|
|
||||||
- "🎁 ❤️ 💕 💯 ✅ ❎ 📢"
|
|
||||||
- "preferences blank 1 2 3 4 5 6 blank BackSpace"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
1:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "1"
|
|
||||||
2:
|
|
||||||
action:
|
|
||||||
set_view: "two"
|
|
||||||
outline: "altline"
|
|
||||||
label: "2"
|
|
||||||
3:
|
|
||||||
action:
|
|
||||||
set_view: "three"
|
|
||||||
outline: "altline"
|
|
||||||
label: "3"
|
|
||||||
4:
|
|
||||||
action:
|
|
||||||
set_view: "four"
|
|
||||||
outline: "altline"
|
|
||||||
label: "4"
|
|
||||||
5:
|
|
||||||
action:
|
|
||||||
set_view: "five"
|
|
||||||
outline: "altline"
|
|
||||||
label: "5"
|
|
||||||
6:
|
|
||||||
action:
|
|
||||||
set_view: "six"
|
|
||||||
outline: "altline"
|
|
||||||
label: "6"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
keysym: BackSpace
|
|
||||||
blank:
|
|
||||||
outline: "narrow"
|
|
||||||
text: ""
|
|
||||||
@ -58,7 +58,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -58,7 +58,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -58,7 +58,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -3,6 +3,7 @@ outlines:
|
|||||||
default: { width: 32, height: 52 }
|
default: { width: 32, height: 52 }
|
||||||
altline: { width: 48.39024, height: 52 }
|
altline: { width: 48.39024, height: 52 }
|
||||||
wide: { width: 62, height: 52 }
|
wide: { width: 62, height: 52 }
|
||||||
|
outline7: { width: 88.97561, height: 52 }
|
||||||
spaceline: { width: 150.5853, height: 52 }
|
spaceline: { width: 150.5853, height: 52 }
|
||||||
|
|
||||||
views:
|
views:
|
||||||
|
|||||||
@ -1,206 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
small: { width: 50, height: 30 }
|
|
||||||
altline: { width: 35.33, height: 52 }
|
|
||||||
wide: { width: 50, height: 52 }
|
|
||||||
spaceline: { width: 150, height: 52 }
|
|
||||||
special: { width: 35.33, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "b é p o w v d l j z"
|
|
||||||
- "a u i e c t s r n m"
|
|
||||||
- "Shift_L y x k q g h f period BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars Return"
|
|
||||||
upper:
|
|
||||||
- "B É P O W V D L J Z"
|
|
||||||
- "A U I E C T S R N M"
|
|
||||||
- "Shift_L Y X K Q G H F - BackSpace"
|
|
||||||
- "show_numbers preferences space colon show_eschars Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
slash:
|
|
||||||
outline: "special"
|
|
||||||
text: "/"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "special"
|
|
||||||
label: ">_"
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 42 }
|
|
||||||
altline: { width: 81, height: 42 }
|
|
||||||
wide: { width: 100, height: 42 }
|
|
||||||
spaceline: { width: 205, height: 42 }
|
|
||||||
special: { width: 54, height: 42 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "b é p o w v d l j z"
|
|
||||||
- "a u i e c t s r n m"
|
|
||||||
- "Shift_L y x k q g h f . BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars Return"
|
|
||||||
upper:
|
|
||||||
- "B É P O W V D L J Z"
|
|
||||||
- "A U I E C T S R N M"
|
|
||||||
- "Shift_L Y X K Q G H F - BackSpace"
|
|
||||||
- "show_numbers preferences space colon show_eschars Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
eschars:
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -63,7 +63,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -63,7 +63,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -1,78 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 142, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "ქ წ ე რ ტ ყ უ ი ო პ"
|
|
||||||
- "ა ს დ ფ გ ჰ ჯ კ ლ"
|
|
||||||
- "Shift_L ზ ხ ც ვ ბ ნ მ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
upper:
|
|
||||||
- "ქ ჭ ე ღ თ ყ უ ი ო პ"
|
|
||||||
- "ა შ დ ფ გ ჰ ჟ კ ლ"
|
|
||||||
- "Shift_L ძ ხ ჩ ვ ბ ნ მ BackSpace"
|
|
||||||
- "show_numbers preferences space period Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "! @ # $ % ^ & * ( )"
|
|
||||||
- "show_symbols - ' \" colon ; , ? BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "+ ⨯ ÷ = / _ € £ ¥ ₾"
|
|
||||||
- "~ ` | · √ π τ ° { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
@ -1,326 +0,0 @@
|
|||||||
# Greek polytonic layout by Antonis Tsolomitis
|
|
||||||
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
|
|
||||||
# March 2022
|
|
||||||
#
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 40, height: 60 }
|
|
||||||
altline: { width: 52.67, height: 60 }
|
|
||||||
wide: { width: 62, height: 60 }
|
|
||||||
extrawide: { width: 66, height: 60 }
|
|
||||||
spaceline: { width: 140, height: 60 }
|
|
||||||
special: { width: 44, height: 60 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "semicolon ς ε ρ τ υ θ ι ο π"
|
|
||||||
- "α σ δ φ γ η ξ κ λ show_accents"
|
|
||||||
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
|
|
||||||
- "show_numbers preferences space period comma Return"
|
|
||||||
upper:
|
|
||||||
- "colon EuroSign Ε Ρ Τ Υ Θ Ι Ο Π"
|
|
||||||
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accents"
|
|
||||||
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
|
|
||||||
- "show_numbers preferences space exclam period_upper Return"
|
|
||||||
accents:
|
|
||||||
- "show_psiliordasiaandvaria show_psiliordasiaandoxia show_psiliordasia show_bariaorperispomeni show_oxia"
|
|
||||||
- "show_PsiliOrDasiaAndVaria show_PsiliOrDasiaAndOxia show_PsiliOrDasia show_BariaOrPerispomeni show_Oxia show_base"
|
|
||||||
- "show_PsiliOrDasiaAndPerispomeni show_psiliordasiaandperispomeni ᾿ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
oxia:
|
|
||||||
- "ά έ ή ί ϊ ΐ ό ύ ϋ ώ"
|
|
||||||
- "show_Oxia ᾳ ᾴ ῃ ῄ ῳ ῴ show_base"
|
|
||||||
- "Ϗ ϐ ϑ ϗ ϖ ΰ ϕ – — BackSpace"
|
|
||||||
- "show_numbers preferences space eis_l eis_r Return"
|
|
||||||
Oxia:
|
|
||||||
- "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ"
|
|
||||||
- "show_oxia ᾼ ῌ ῼ show_base"
|
|
||||||
- "Ϗ ϐ ϑ ϗ ϖ ϕ – — BackSpace"
|
|
||||||
- "show_numbers preferences space eis_l eis_r Return"
|
|
||||||
bariaorperispomeni:
|
|
||||||
- "ὰ ὲ ὴ ὶ ῒ ὸ ὺ ὼ ῐ ῑ"
|
|
||||||
- "show_BariaOrPerispomeni ᾳ ᾲ ῃ ῂ ῳ ῲ ῠ show_base"
|
|
||||||
- "ᾶ ᾷ ῆ ῖ ῗ ῦ ῧ ῶ ῡ BackSpace"
|
|
||||||
- "show_numbers preferences space ῇ ῷ Return"
|
|
||||||
BariaOrPerispomeni:
|
|
||||||
- "Ὰ Ὲ Ὴ Ὶ Ὸ Ὺ Ὼ"
|
|
||||||
- "show_bariaorperispomeni ᾼ ῌ ῼ show_base"
|
|
||||||
- "show_numbers preferences space BackSpace Return"
|
|
||||||
psiliordasia:
|
|
||||||
- "ἀ ἐ ἠ ἰ ὀ ὐ ὠ ᾀ ᾐ ᾠ"
|
|
||||||
- "show_PsiliOrDasia ἁ ἑ ἡ ἱ ὁ ὑ ὡ show_base"
|
|
||||||
- "ᾁ ᾑ ᾡ ῤ ῥ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
PsiliOrDasia:
|
|
||||||
- "Ἀ Ἐ Ἠ Ἰ Ὀ Ὠ ᾈ ᾘ ᾨ"
|
|
||||||
- "show_psiliordasia Ἁ Ἑ Ἡ Ἱ Ὁ Ὑ Ὡ show_base"
|
|
||||||
- "ᾉ ᾙ ᾩ Ῥ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
psiliordasiaandoxia:
|
|
||||||
- "ἄ ἔ ἤ ἴ ὄ ὔ ὤ ᾄ ᾔ ᾤ"
|
|
||||||
- "show_PsiliOrDasiaAndOxia ἅ ἕ ἥ ἵ ὅ ὕ ὥ show_base"
|
|
||||||
- "ᾅ ᾕ ᾥ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
PsiliOrDasiaAndOxia:
|
|
||||||
- "Ἄ Ἔ Ἤ Ἴ Ὄ Ὤ ᾌ ᾜ ᾬ"
|
|
||||||
- "show_psiliordasiaandoxia Ἅ Ἕ Ἥ Ἵ Ὅ Ὕ Ὥ show_base"
|
|
||||||
- "ᾍ ᾝ ᾭ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
psiliordasiaandvaria:
|
|
||||||
- "ἂ ἒ ἢ ἲ ὂ ὒ ὢ ᾂ ᾒ ᾢ"
|
|
||||||
- "show_PsiliOrDasiaAndVaria ἃ ἓ ἣ ἳ ὃ ὓ ὣ show_base"
|
|
||||||
- "ᾃ ᾓ ᾣ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
PsiliOrDasiaAndVaria:
|
|
||||||
- "Ἂ Ἒ Ἢ Ἲ Ὂ Ὢ ᾊ ᾚ ᾪ"
|
|
||||||
- "show_psiliordasiaandvaria Ἃ Ἓ Ἣ Ἳ Ὃ Ὓ Ὣ show_base"
|
|
||||||
- "ᾋ ᾛ ᾫ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
psiliordasiaandperispomeni:
|
|
||||||
- "ἆ ἦ ἶ ὖ ὦ ᾆ ᾖ ᾦ"
|
|
||||||
- "show_PsiliOrDasiaAndPerispomeni ἇ ἧ ἷ ὗ ὧ show_base"
|
|
||||||
- "ᾇ ᾗ ᾧ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
PsiliOrDasiaAndPerispomeni:
|
|
||||||
- "Ἆ Ἦ Ἶ Ὦ ᾎ ᾞ ᾮ"
|
|
||||||
- "show_psiliordasiaandperispomeni Ἇ Ἧ Ἷ Ὗ Ὧ show_base"
|
|
||||||
- "ᾏ ᾟ ᾯ BackSpace"
|
|
||||||
- "show_numbers preferences space Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
|
|
||||||
- "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
|
|
||||||
- "show_letters preferences space period comma Return"
|
|
||||||
symbols:
|
|
||||||
- "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
|
|
||||||
- "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
|
|
||||||
- "show_numbers backslash slash less greater equal bracketleft bracketright BackSpace"
|
|
||||||
- "show_letters preferences space period comma Return"
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_oxia:
|
|
||||||
action:
|
|
||||||
set_view: "oxia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "´ ΅"
|
|
||||||
show_Oxia:
|
|
||||||
action:
|
|
||||||
set_view: "Oxia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "´¨↑"
|
|
||||||
show_bariaorperispomeni:
|
|
||||||
action:
|
|
||||||
set_view: "bariaorperispomeni"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "` ῀"
|
|
||||||
show_BariaOrPerispomeni:
|
|
||||||
action:
|
|
||||||
set_view: "BariaOrPerispomeni"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "`῀↑"
|
|
||||||
show_psiliordasia:
|
|
||||||
action:
|
|
||||||
set_view: "psiliordasia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "᾿ ῾"
|
|
||||||
show_PsiliOrDasia:
|
|
||||||
action:
|
|
||||||
set_view: "PsiliOrDasia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "᾿῾↑"
|
|
||||||
show_psiliordasiaandoxia:
|
|
||||||
action:
|
|
||||||
set_view: "psiliordasiaandoxia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῎ ῞"
|
|
||||||
show_PsiliOrDasiaAndOxia:
|
|
||||||
action:
|
|
||||||
set_view: "PsiliOrDasiaAndOxia"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῎῞↑"
|
|
||||||
show_psiliordasiaandvaria:
|
|
||||||
action:
|
|
||||||
set_view: "psiliordasiaandvaria"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῍ ῝"
|
|
||||||
show_PsiliOrDasiaAndVaria:
|
|
||||||
action:
|
|
||||||
set_view: "PsiliOrDasiaAndVaria"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῍῝↑"
|
|
||||||
show_psiliordasiaandperispomeni:
|
|
||||||
action:
|
|
||||||
set_view: "psiliordasiaandperispomeni"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῏ ῟"
|
|
||||||
show_PsiliOrDasiaAndPerispomeni:
|
|
||||||
action:
|
|
||||||
set_view: "PsiliOrDasiaAndPerispomeni"
|
|
||||||
outline: "extrawide"
|
|
||||||
label: "῏῟↑"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ΑΒΓ"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_accents:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "accents"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ᾦ"
|
|
||||||
show_base:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "αι"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
period_upper:
|
|
||||||
outline: "special"
|
|
||||||
text: "·"
|
|
||||||
comma:
|
|
||||||
outline: "special"
|
|
||||||
text: ","
|
|
||||||
colon:
|
|
||||||
outline: "special"
|
|
||||||
text: ":"
|
|
||||||
semicolon:
|
|
||||||
outline: "special"
|
|
||||||
text: ";"
|
|
||||||
exclam:
|
|
||||||
outline: "special"
|
|
||||||
text: "!"
|
|
||||||
eis_l:
|
|
||||||
outline: "special"
|
|
||||||
text: "«"
|
|
||||||
eis_r:
|
|
||||||
outline: "special"
|
|
||||||
text: "»"
|
|
||||||
aring:
|
|
||||||
text: "å"
|
|
||||||
Aring:
|
|
||||||
text: "Å"
|
|
||||||
oslash:
|
|
||||||
text: "ø"
|
|
||||||
Oslash:
|
|
||||||
text: "Ø"
|
|
||||||
ae:
|
|
||||||
text: "æ"
|
|
||||||
AE:
|
|
||||||
text: "Æ"
|
|
||||||
asterisk:
|
|
||||||
text: "*"
|
|
||||||
asciitilde:
|
|
||||||
text: "~"
|
|
||||||
quoteleft:
|
|
||||||
text: "`"
|
|
||||||
bar:
|
|
||||||
text: "|"
|
|
||||||
U00B7:
|
|
||||||
text: "·"
|
|
||||||
squareroot:
|
|
||||||
text: "√"
|
|
||||||
Greek_pi:
|
|
||||||
text: "π"
|
|
||||||
division:
|
|
||||||
text: "÷"
|
|
||||||
multiply:
|
|
||||||
text: "×"
|
|
||||||
paragraph:
|
|
||||||
text: "¶"
|
|
||||||
Greek_tau:
|
|
||||||
text: "τ"
|
|
||||||
copyright:
|
|
||||||
text: "©"
|
|
||||||
numbersign:
|
|
||||||
text: "#"
|
|
||||||
U00AE:
|
|
||||||
text: "®"
|
|
||||||
at:
|
|
||||||
text: "@"
|
|
||||||
dollar:
|
|
||||||
text: "$"
|
|
||||||
U00A3:
|
|
||||||
text: "£"
|
|
||||||
percent:
|
|
||||||
text: "%"
|
|
||||||
EuroSign:
|
|
||||||
outline: "special"
|
|
||||||
text: "€"
|
|
||||||
ampersand:
|
|
||||||
text: "&"
|
|
||||||
U00A5:
|
|
||||||
text: "¥"
|
|
||||||
minus:
|
|
||||||
text: "-"
|
|
||||||
asciicircum:
|
|
||||||
text: "^"
|
|
||||||
underscore:
|
|
||||||
text: "_"
|
|
||||||
degree:
|
|
||||||
text: "°"
|
|
||||||
plus:
|
|
||||||
text: "+"
|
|
||||||
equal:
|
|
||||||
text: "="
|
|
||||||
parenleft:
|
|
||||||
text: "("
|
|
||||||
parenright:
|
|
||||||
text: ")"
|
|
||||||
braceleft:
|
|
||||||
text: "{"
|
|
||||||
braceright:
|
|
||||||
text: "}"
|
|
||||||
backslash:
|
|
||||||
text: "\\"
|
|
||||||
slash:
|
|
||||||
text: "/"
|
|
||||||
quotedbl:
|
|
||||||
text: "\""
|
|
||||||
quoteright:
|
|
||||||
text: "'"
|
|
||||||
less:
|
|
||||||
text: "<"
|
|
||||||
greater:
|
|
||||||
text: ">"
|
|
||||||
question:
|
|
||||||
text: "?"
|
|
||||||
bracketleft:
|
|
||||||
text: "["
|
|
||||||
bracketright:
|
|
||||||
text: "]"
|
|
||||||
|
|
||||||
@ -1,41 +1,40 @@
|
|||||||
# Greek layout originally created by Antonis Tsolomitis
|
# Greek layout created by Antonis Tsolomitis
|
||||||
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
|
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
|
||||||
# Sep 2019
|
# Sep 2019
|
||||||
# Edited by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
|
|
||||||
---
|
---
|
||||||
outlines:
|
outlines:
|
||||||
default: { width: 40, height: 60 }
|
default: { width: 32, height: 52 }
|
||||||
altline: { width: 52.67, height: 60 }
|
altline: { width: 48.39024, height: 52 }
|
||||||
wide: { width: 62, height: 60 }
|
wide: { width: 62, height: 52 }
|
||||||
spaceline: { width: 140, height: 60 }
|
outline7: { width: 88.97561, height: 52 }
|
||||||
special: { width: 44, height: 60 }
|
spaceline: { width: 150.5853, height: 52 }
|
||||||
|
|
||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "semicolon ς ε ρ τ υ θ ι ο π"
|
- "; ς ε ρ τ υ θ ι ο π !"
|
||||||
- "α σ δ φ γ η ξ κ λ show_accented"
|
- "α σ δ φ γ η ξ κ λ show_accented"
|
||||||
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
|
- "Shift_L ζ χ ψ ω β ν μ , BackSpace"
|
||||||
- "show_numbers preferences space period comma Return"
|
- "show_numbers preferences space period Return"
|
||||||
upper:
|
upper:
|
||||||
- "colon exclam Ε Ρ Τ Υ Θ Ι Ο Π"
|
- ": EuroSign Ε Ρ Τ Υ Θ Ι Ο Π"
|
||||||
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
|
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
|
||||||
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
|
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ · BackSpace"
|
||||||
- "show_numbers preferences space period_upper apostrophe Return"
|
- "show_numbers preferences space « » Return"
|
||||||
accented:
|
accented:
|
||||||
- "ά έ ή ί ϊ ΐ ό ύ ϋ ώ "
|
- "ά έ ή ί ό ύ ώ ϊ ϋ ΐ"
|
||||||
- "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ show_base"
|
- "ΰ Ά Έ Ή Ί Ό Ύ Ώ Ϊ show_base"
|
||||||
- "Ϗ ϐ ϑ ϗ ϖ ΰ ϕ – — BackSpace"
|
- "Ϋ Ϗ ϐ ϑ ϕ ϖ ϗ – — BackSpace"
|
||||||
- "show_numbers preferences space eis_l eis_r Return"
|
- "show_numbers preferences space quoteleft quoteright Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
- "1 2 3 4 5 6 7 8 9 0"
|
||||||
- "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
|
- "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
|
||||||
- "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
|
- "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
|
||||||
- "show_letters preferences space period comma Return"
|
- "show_letters preferences space period Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
|
- "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
|
||||||
- "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
|
- "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
|
||||||
- "show_numbers backslash slash less greater equal bracketleft bracketright BackSpace"
|
- "show_numbers backslash slash less greater equal bracketleft bracketright BackSpace"
|
||||||
- "show_letters preferences space period comma Return"
|
- "show_letters preferences space period Return"
|
||||||
buttons:
|
buttons:
|
||||||
Shift_L:
|
Shift_L:
|
||||||
action:
|
action:
|
||||||
@ -55,12 +54,12 @@ buttons:
|
|||||||
show_numbers:
|
show_numbers:
|
||||||
action:
|
action:
|
||||||
set_view: "numbers"
|
set_view: "numbers"
|
||||||
outline: "wide"
|
outline: "altline"
|
||||||
label: "123"
|
label: "123"
|
||||||
show_letters:
|
show_letters:
|
||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "altline"
|
||||||
label: "ΑΒΓ"
|
label: "ΑΒΓ"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
@ -79,40 +78,16 @@ buttons:
|
|||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "αι"
|
label: "αι"
|
||||||
|
period:
|
||||||
|
outline: "altline"
|
||||||
|
text: "."
|
||||||
space:
|
space:
|
||||||
outline: "spaceline"
|
outline: spaceline
|
||||||
text: " "
|
text: " "
|
||||||
Return:
|
Return:
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
icon: "key-enter"
|
icon: "key-enter"
|
||||||
keysym: "Return"
|
keysym: "Return"
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
period_upper:
|
|
||||||
outline: "special"
|
|
||||||
text: "·"
|
|
||||||
comma:
|
|
||||||
outline: "special"
|
|
||||||
text: ","
|
|
||||||
colon:
|
|
||||||
outline: "special"
|
|
||||||
text: ":"
|
|
||||||
semicolon:
|
|
||||||
outline: "special"
|
|
||||||
text: ";"
|
|
||||||
apostrophe:
|
|
||||||
outline: "special"
|
|
||||||
text: "᾿"
|
|
||||||
exclam:
|
|
||||||
outline: "special"
|
|
||||||
text: "!"
|
|
||||||
eis_l:
|
|
||||||
outline: "special"
|
|
||||||
text: "«"
|
|
||||||
eis_r:
|
|
||||||
outline: "special"
|
|
||||||
text: "»"
|
|
||||||
aring:
|
aring:
|
||||||
text: "å"
|
text: "å"
|
||||||
Aring:
|
Aring:
|
||||||
@ -187,6 +162,8 @@ buttons:
|
|||||||
text: "{"
|
text: "{"
|
||||||
braceright:
|
braceright:
|
||||||
text: "}"
|
text: "}"
|
||||||
|
comma:
|
||||||
|
text: ","
|
||||||
backslash:
|
backslash:
|
||||||
text: "\\"
|
text: "\\"
|
||||||
slash:
|
slash:
|
||||||
@ -199,6 +176,12 @@ buttons:
|
|||||||
text: "<"
|
text: "<"
|
||||||
greater:
|
greater:
|
||||||
text: ">"
|
text: ">"
|
||||||
|
colon:
|
||||||
|
text: ":"
|
||||||
|
semicolon:
|
||||||
|
text: ";"
|
||||||
|
exclam:
|
||||||
|
text: "!"
|
||||||
question:
|
question:
|
||||||
text: "?"
|
text: "?"
|
||||||
bracketleft:
|
bracketleft:
|
||||||
|
|||||||
@ -1,204 +0,0 @@
|
|||||||
# Creaed by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 80, height: 60 }
|
|
||||||
altline: { width: 110, height: 60 }
|
|
||||||
wide: { width: 120, height: 60 }
|
|
||||||
spaceline: { width: 250, height: 60 }
|
|
||||||
special: { width: 75, height: 60 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "semicolon ς ε ρ τ υ θ ι ο π"
|
|
||||||
- "α σ δ φ γ η ξ κ λ show_accented"
|
|
||||||
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
|
|
||||||
- "show_numbers preferences space period comma Return"
|
|
||||||
upper:
|
|
||||||
- "colon exclam Ε Ρ Τ Υ Θ Ι Ο Π"
|
|
||||||
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
|
|
||||||
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
|
|
||||||
- "show_numbers preferences space period_upper apostrophe Return"
|
|
||||||
accented:
|
|
||||||
- "ά έ ή ί ϊ ΐ ό ύ ϋ ώ "
|
|
||||||
- "Ά Έ Ή Ί Ϊ Ό Ύ Ϋ Ώ show_base"
|
|
||||||
- "Ϗ ϐ ϑ ϗ ΰ ϕ ϖ – — BackSpace"
|
|
||||||
- "show_numbers preferences space eis_l eis_r Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
|
|
||||||
- "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
|
|
||||||
- "show_letters preferences space period comma Return"
|
|
||||||
symbols:
|
|
||||||
- "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
|
|
||||||
- "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
|
|
||||||
- "show_numbers backslash slash less greater equal bracketleft bracketright BackSpace"
|
|
||||||
- "show_letters preferences space period comma Return"
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ΑΒΓ"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_accented:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "accented"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "άΐ"
|
|
||||||
show_base:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "αι"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
period_upper:
|
|
||||||
outline: "special"
|
|
||||||
text: "·"
|
|
||||||
comma:
|
|
||||||
outline: "special"
|
|
||||||
text: ","
|
|
||||||
colon:
|
|
||||||
outline: "special"
|
|
||||||
text: ":"
|
|
||||||
semicolon:
|
|
||||||
outline: "special"
|
|
||||||
text: ";"
|
|
||||||
apostrophe:
|
|
||||||
outline: "special"
|
|
||||||
text: "᾿"
|
|
||||||
exclam:
|
|
||||||
outline: "special"
|
|
||||||
text: "!"
|
|
||||||
eis_l:
|
|
||||||
outline: "special"
|
|
||||||
text: "«"
|
|
||||||
eis_r:
|
|
||||||
outline: "special"
|
|
||||||
text: "»"
|
|
||||||
aring:
|
|
||||||
text: "å"
|
|
||||||
Aring:
|
|
||||||
text: "Å"
|
|
||||||
oslash:
|
|
||||||
text: "ø"
|
|
||||||
Oslash:
|
|
||||||
text: "Ø"
|
|
||||||
ae:
|
|
||||||
text: "æ"
|
|
||||||
AE:
|
|
||||||
text: "Æ"
|
|
||||||
asterisk:
|
|
||||||
text: "*"
|
|
||||||
asciitilde:
|
|
||||||
text: "~"
|
|
||||||
quoteleft:
|
|
||||||
text: "`"
|
|
||||||
bar:
|
|
||||||
text: "|"
|
|
||||||
U00B7:
|
|
||||||
text: "·"
|
|
||||||
squareroot:
|
|
||||||
text: "√"
|
|
||||||
Greek_pi:
|
|
||||||
text: "π"
|
|
||||||
division:
|
|
||||||
text: "÷"
|
|
||||||
multiply:
|
|
||||||
text: "×"
|
|
||||||
paragraph:
|
|
||||||
text: "¶"
|
|
||||||
Greek_tau:
|
|
||||||
text: "τ"
|
|
||||||
copyright:
|
|
||||||
text: "©"
|
|
||||||
numbersign:
|
|
||||||
text: "#"
|
|
||||||
U00AE:
|
|
||||||
text: "®"
|
|
||||||
at:
|
|
||||||
text: "@"
|
|
||||||
dollar:
|
|
||||||
text: "$"
|
|
||||||
U00A3:
|
|
||||||
text: "£"
|
|
||||||
percent:
|
|
||||||
text: "%"
|
|
||||||
EuroSign:
|
|
||||||
text: "€"
|
|
||||||
ampersand:
|
|
||||||
text: "&"
|
|
||||||
U00A5:
|
|
||||||
text: "¥"
|
|
||||||
minus:
|
|
||||||
text: "-"
|
|
||||||
asciicircum:
|
|
||||||
text: "^"
|
|
||||||
underscore:
|
|
||||||
text: "_"
|
|
||||||
degree:
|
|
||||||
text: "°"
|
|
||||||
plus:
|
|
||||||
text: "+"
|
|
||||||
equal:
|
|
||||||
text: "="
|
|
||||||
parenleft:
|
|
||||||
text: "("
|
|
||||||
parenright:
|
|
||||||
text: ")"
|
|
||||||
braceleft:
|
|
||||||
text: "{"
|
|
||||||
braceright:
|
|
||||||
text: "}"
|
|
||||||
backslash:
|
|
||||||
text: "\\"
|
|
||||||
slash:
|
|
||||||
text: "/"
|
|
||||||
quotedbl:
|
|
||||||
text: "\""
|
|
||||||
quoteright:
|
|
||||||
text: "'"
|
|
||||||
less:
|
|
||||||
text: "<"
|
|
||||||
greater:
|
|
||||||
text: ">"
|
|
||||||
question:
|
|
||||||
text: "?"
|
|
||||||
bracketleft:
|
|
||||||
text: "["
|
|
||||||
bracketright:
|
|
||||||
text: "]"
|
|
||||||
@ -1,82 +0,0 @@
|
|||||||
# Maintained by: soyer <soyer@irl.hu>
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 99.67, height: 52 }
|
|
||||||
special: { width: 35.33, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L y x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space , . - Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space ? : ! Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols ; \" ' : = < > BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , . - Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` ´ | · √ µ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers \\ / § π τ [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , . - Return"
|
|
||||||
eschars:
|
|
||||||
- "ö ü ó Ö Ü Ó"
|
|
||||||
- "í ő ú Í Ő Ú"
|
|
||||||
- "show_numbers é á ű É Á Ű BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space „ “ Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "éá"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
@ -1,82 +0,0 @@
|
|||||||
# Maintained by: soyer <soyer@irl.hu>
|
|
||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 48, height: 42 }
|
|
||||||
altline: { width: 81, height: 42 }
|
|
||||||
wide: { width: 108, height: 42 }
|
|
||||||
spaceline: { width: 216, height: 42 }
|
|
||||||
special: { width: 48, height: 42 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t z u i o p ő ú"
|
|
||||||
- "a s d f g h j k l é á ű"
|
|
||||||
- "Shift_L í y x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space , . - Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Z U I O P Ő Ú"
|
|
||||||
- "A S D F G H J K L É Á Ű"
|
|
||||||
- "Shift_L Í Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space ? : ! Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols ; \" ' : = < > BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , . - Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` ´ | · √ µ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers \\ / § π τ [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , . - Return"
|
|
||||||
eschars:
|
|
||||||
- "ö ü ó Ö Ü Ó"
|
|
||||||
- "í ő ú Í Ő Ú"
|
|
||||||
- "show_numbers é á ű É Á Ű BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space „ “ Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "éá"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
label: " "
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
@ -8,22 +8,22 @@ outlines:
|
|||||||
|
|
||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "ض ص ث ق ف غ ع ه خ ح ج"
|
- "ض ص ق ف غ ع ه خ ح ج"
|
||||||
- "ش س ی ب ل ا ت ن م ک گ"
|
- "ش س ی ب ل ا ت ن م ک"
|
||||||
- "Shift_L ظ ط ز ر ذ د پ و BackSpace"
|
- "Shift_L ظ ط ز ر ذ د و BackSpace"
|
||||||
- "show_numbers preferences space zwnj period Return"
|
- "show_numbers preferences space period Return"
|
||||||
upper:
|
upper:
|
||||||
- " ْ ٌ ٍ ً ُ ِ َ ّ # @ چ"
|
- "پ { } [ ] ّ َ ِ ُ چ"
|
||||||
- "_ ئ ي إ أ آ ة » « : ؛"
|
- "ؤ ئ ي إ أ آ ة » « گ"
|
||||||
- "Shift_L ك ٓ ژ ٔ ء > < ؟ BackSpace"
|
- "Shift_L ك ٓ ژ ء > < ؟ BackSpace"
|
||||||
- "show_numbers preferences space ! ، Return"
|
- "show_numbers preferences space period Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ |"
|
- "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
|
||||||
- "… ٬ ٫ ﷼ ٪ ، * ) ( − ـ"
|
- "@ # ﷼ % & - _ + ( )"
|
||||||
- "show_symbols + - × ÷ = ^ % / BackSpace"
|
- "show_symbols , \" ' colon ؛ ! ? BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "& ` | · • % π τ ÷ × ¶"
|
- "~ ` | · √ π τ ÷ × ¶"
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
- "© ® £ € ¥ ^ ° * { }"
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
@ -48,17 +48,17 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "numbers"
|
set_view: "numbers"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "۱۲۳"
|
label: "123"
|
||||||
show_numbers_from_symbols:
|
show_numbers_from_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "numbers"
|
set_view: "numbers"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "۱۲۳"
|
label: "123"
|
||||||
show_letters:
|
show_letters:
|
||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ابپ"
|
label: "ABC"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
@ -74,8 +74,5 @@ buttons:
|
|||||||
outline: "wide"
|
outline: "wide"
|
||||||
icon: "key-enter"
|
icon: "key-enter"
|
||||||
keysym: "Return"
|
keysym: "Return"
|
||||||
zwnj:
|
|
||||||
icon: "zwnj"
|
|
||||||
text: ""
|
|
||||||
colon:
|
colon:
|
||||||
text: ":"
|
text: ":"
|
||||||
|
|||||||
@ -8,25 +8,25 @@ outlines:
|
|||||||
|
|
||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "ض ص ث ق ف غ ع ه خ ح ج چ \\"
|
- "ض ص ق ف غ ع ه خ ح ج"
|
||||||
- "ش س ی ب ل ا ت ن م ک گ"
|
- "ش س ی ب ل ا ت ن م ک"
|
||||||
- "Shift_L ظ ط ز ر ذ د پ و ، / BackSpace"
|
- "Shift_L ظ ط ز ر ذ د و BackSpace"
|
||||||
- "show_numbers preferences space zwnj ؟ ! period Return"
|
- "show_numbers preferences space period Return"
|
||||||
upper:
|
upper:
|
||||||
- " ْ ٌ ٍ ً ُ ِ َ ّ ] [ @ # _"
|
- "پ { } [ ] ّ َ ِ ُ چ"
|
||||||
- "ؤ ئ ي إ أ آ ة » « : ؛"
|
- "ؤ ئ ي إ أ آ ة » « گ"
|
||||||
- "Shift_L ك ٓ ژ ٰ ٔ ء > < ؟ BackSpace"
|
- "Shift_L ك ٓ ژ ء > < ؟ BackSpace"
|
||||||
- "show_numbers preferences space ، ؟ ! period Return"
|
- "show_numbers preferences space period Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ | ="
|
- "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
|
||||||
- "… ٬ ٫ ﷼ ٪ ، * ) ( − _"
|
- "@ # ﷼ % & - _ + ( )"
|
||||||
- "show_symbols + - × ÷ = ^ % / BackSpace"
|
- "show_symbols , \" ' colon ؛ ! ? BackSpace"
|
||||||
- "show_letters preferences space ، ؟ ! period Return"
|
- "show_letters preferences space period Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "& ` | · • % π τ ÷ × ¶"
|
- "~ ` | · √ π τ ÷ × ¶"
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
- "© ® £ € ¥ ^ ° * { }"
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
||||||
- "show_letters preferences space ، ؟ ! period Return"
|
- "show_letters preferences space period Return"
|
||||||
|
|
||||||
buttons:
|
buttons:
|
||||||
Shift_L:
|
Shift_L:
|
||||||
@ -48,23 +48,23 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "numbers"
|
set_view: "numbers"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "۱۲۳"
|
label: "123"
|
||||||
show_numbers_from_symbols:
|
show_numbers_from_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "numbers"
|
set_view: "numbers"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "۱۲۳"
|
label: "123"
|
||||||
show_letters:
|
show_letters:
|
||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "wide"
|
outline: "wide"
|
||||||
label: "ابپ"
|
label: "ABC"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "*/="
|
label: "*/="
|
||||||
period:
|
".":
|
||||||
outline: "special"
|
outline: "special"
|
||||||
text: "."
|
text: "."
|
||||||
space:
|
space:
|
||||||
@ -74,8 +74,5 @@ buttons:
|
|||||||
outline: "wide"
|
outline: "wide"
|
||||||
icon: "key-enter"
|
icon: "key-enter"
|
||||||
keysym: "Return"
|
keysym: "Return"
|
||||||
zwnj:
|
|
||||||
icon: "zwnj"
|
|
||||||
text: ""
|
|
||||||
colon:
|
colon:
|
||||||
text: ":"
|
text: ":"
|
||||||
|
|||||||
@ -65,7 +65,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -30,10 +30,10 @@ views:
|
|||||||
- "show_numbers \\ / < > = [ ] BackSpace"
|
- "show_numbers \\ / < > = [ ] BackSpace"
|
||||||
- "show_letters show_eschars preferences space ? . Return"
|
- "show_letters show_eschars preferences space ? . Return"
|
||||||
eschars:
|
eschars:
|
||||||
- "è é È É ù ú Ù Ú ò ó"
|
- "á é í ó ú Á É Í Ó Ú"
|
||||||
- "à á À Á ì í Ì Í Ò Ó"
|
- "à è ì ò « » ù ! { }"
|
||||||
- "show_numbers “ ” « » ≈ ≠ ‽ BackSpace"
|
- "show_numbers \\ / < > = [ ] BackSpace"
|
||||||
- "show_letters show_eschars preferences space , . Return"
|
- "show_letters show_eschars preferences space « » Return"
|
||||||
|
|
||||||
buttons:
|
buttons:
|
||||||
Shift_L:
|
Shift_L:
|
||||||
@ -65,7 +65,7 @@ buttons:
|
|||||||
action:
|
action:
|
||||||
set_view: "base"
|
set_view: "base"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "ABC"
|
label: "abc"
|
||||||
show_symbols:
|
show_symbols:
|
||||||
action:
|
action:
|
||||||
set_view: "symbols"
|
set_view: "symbols"
|
||||||
|
|||||||
@ -438,7 +438,7 @@ buttons:
|
|||||||
unlock_view: "カタカナ"
|
unlock_view: "カタカナ"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "。"
|
label: "。"
|
||||||
# Buttons for Latin characters
|
# Buttons for Latin charachters
|
||||||
RSYM1:
|
RSYM1:
|
||||||
action:
|
action:
|
||||||
locking:
|
locking:
|
||||||
|
|||||||
@ -438,7 +438,7 @@ buttons:
|
|||||||
unlock_view: "カタカナ"
|
unlock_view: "カタカナ"
|
||||||
outline: "altline"
|
outline: "altline"
|
||||||
label: "。"
|
label: "。"
|
||||||
# Buttons for Latin characters
|
# Buttons for Latin charachters
|
||||||
RSYM1:
|
RSYM1:
|
||||||
action:
|
action:
|
||||||
locking:
|
locking:
|
||||||
|
|||||||
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
margins: { top: 4, side: 0, bottom: 4 }
|
|
||||||
outlines:
|
|
||||||
default: { width: 120, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "1 2 3"
|
|
||||||
- "4 5 6"
|
|
||||||
- "7 8 9"
|
|
||||||
- "BackSpace 0 Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
BackSpace:
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
Return:
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 99.67, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space , Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , Return"
|
|
||||||
eschars:
|
|
||||||
- "ă â î ș ț á é í ó ü"
|
|
||||||
- "Ă Â Î Ș Ț Á É Í Ó Ü"
|
|
||||||
- "show_numbers_from_symbols „ ” « » ― { } BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ăĂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 42 }
|
|
||||||
altline: { width: 81, height: 42 }
|
|
||||||
wide: { width: 108, height: 42 }
|
|
||||||
spaceline: { width: 153, height: 42 }
|
|
||||||
special: { width: 54, height: 42 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space , Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space , Return"
|
|
||||||
eschars:
|
|
||||||
- "ă â î ș ț á é í ó ü"
|
|
||||||
- "Ă Â Î Ș Ț Á É Í Ó Ü"
|
|
||||||
- "show_numbers_from_symbols „ ” « » ― { } BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: "erase"
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ăĂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,164 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 50, height: 42 }
|
|
||||||
altline: { width: 81, height: 42 }
|
|
||||||
wide: { width: 108, height: 42 }
|
|
||||||
spaceline: { width: 216, height: 42 }
|
|
||||||
special: { width: 60, height: 42 }
|
|
||||||
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p å"
|
|
||||||
- "a s d f g h j k l ö ä"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P Å"
|
|
||||||
- "A S D F G H J K L Ö Ä"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space . Return"
|
|
||||||
numbers:
|
|
||||||
- "§ 1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "at numbersign EuroSign dollar percent ampersand minus underscore plus parenleft parenright"
|
|
||||||
- "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "µ asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
|
|
||||||
- "½ ¤ copyright U00AE U00A3 U00A5 asciicircum degree asterisk braceleft braceright"
|
|
||||||
- "show_numbers_from_symbols backslash slash less greater equal bracketleft bracketright BackSpace"
|
|
||||||
- "show_letters preferences space . Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: altline
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
outline: "wide"
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: altline
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
outline: "wide"
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
".":
|
|
||||||
outline: "special"
|
|
||||||
space:
|
|
||||||
outline: spaceline
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
asterisk:
|
|
||||||
text: "*"
|
|
||||||
asciitilde:
|
|
||||||
text: "~"
|
|
||||||
quoteleft:
|
|
||||||
text: "`"
|
|
||||||
bar:
|
|
||||||
text: "|"
|
|
||||||
U00B7:
|
|
||||||
text: "·"
|
|
||||||
squareroot:
|
|
||||||
text: "√"
|
|
||||||
Greek_pi:
|
|
||||||
text: "π"
|
|
||||||
division:
|
|
||||||
text: "÷"
|
|
||||||
multiply:
|
|
||||||
text: "×"
|
|
||||||
paragraph:
|
|
||||||
text: "¶"
|
|
||||||
Greek_tau:
|
|
||||||
text: "τ"
|
|
||||||
copyright:
|
|
||||||
text: "©"
|
|
||||||
numbersign:
|
|
||||||
text: "#"
|
|
||||||
U00AE:
|
|
||||||
text: "®"
|
|
||||||
at:
|
|
||||||
text: "@"
|
|
||||||
dollar:
|
|
||||||
text: "$"
|
|
||||||
U00A3:
|
|
||||||
text: "£"
|
|
||||||
percent:
|
|
||||||
text: "%"
|
|
||||||
EuroSign:
|
|
||||||
text: "€"
|
|
||||||
ampersand:
|
|
||||||
text: "&"
|
|
||||||
U00A5:
|
|
||||||
text: "¥"
|
|
||||||
minus:
|
|
||||||
text: "-"
|
|
||||||
asciicircum:
|
|
||||||
text: "^"
|
|
||||||
underscore:
|
|
||||||
text: "_"
|
|
||||||
degree:
|
|
||||||
text: "°"
|
|
||||||
plus:
|
|
||||||
text: "+"
|
|
||||||
equal:
|
|
||||||
text: "="
|
|
||||||
parenleft:
|
|
||||||
text: "("
|
|
||||||
parenright:
|
|
||||||
text: ")"
|
|
||||||
braceleft:
|
|
||||||
text: "{"
|
|
||||||
braceright:
|
|
||||||
text: "}"
|
|
||||||
comma:
|
|
||||||
text: ","
|
|
||||||
backslash:
|
|
||||||
text: "\\"
|
|
||||||
slash:
|
|
||||||
text: "/"
|
|
||||||
quotedbl:
|
|
||||||
text: "\""
|
|
||||||
quoteright:
|
|
||||||
text: "'"
|
|
||||||
less:
|
|
||||||
text: "<"
|
|
||||||
greater:
|
|
||||||
text: ">"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
semicolon:
|
|
||||||
text: ";"
|
|
||||||
exclam:
|
|
||||||
text: "!"
|
|
||||||
question:
|
|
||||||
text: "?"
|
|
||||||
bracketleft:
|
|
||||||
text: "["
|
|
||||||
bracketright:
|
|
||||||
text: "]"
|
|
||||||
@ -6,35 +6,35 @@ outlines:
|
|||||||
wide: { width: 59, height: 46 }
|
wide: { width: 59, height: 46 }
|
||||||
spaceline: { width: 140, height: 46 }
|
spaceline: { width: 140, height: 46 }
|
||||||
special: { width: 44, height: 46 }
|
special: { width: 44, height: 46 }
|
||||||
small: { width: 50.47, height: 22 }
|
small: { width: 59, height: 22 }
|
||||||
|
|
||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "Ctrl Alt ↑ ↓ ← →"
|
||||||
- "Shift_L p y f g c r l BackSpace"
|
- "q w e r t y u i o p"
|
||||||
- "a o e u i d h t n s"
|
- "a s d f g h j k l"
|
||||||
- ", q j k x b m w v z"
|
- "Shift_L z x c v b n m BackSpace"
|
||||||
- "show_numbers preferences space show_actions Return"
|
- "show_numbers preferences space show_actions Return"
|
||||||
upper:
|
upper:
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
- "Ctrl Alt PgUp PgDn Home End"
|
||||||
- "Shift_L P Y F G C R L BackSpace"
|
- "Q W E R T Y U I O P"
|
||||||
- "A O E U I D H T N S"
|
- "A S D F G H J K L"
|
||||||
- ", Q J K X B M W V Z"
|
- "Shift_L Z X C V B N M BackSpace"
|
||||||
- "show_numbers preferences space show_actions Return"
|
- "show_numbers preferences space show_actions Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "Ctrl Alt ↑ ↓ ← →"
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "* # $ / & - _ + ( )"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
- "1 2 3 4 5 6 7 8 9 0"
|
||||||
|
- "* # $ / & - _ + ( )"
|
||||||
|
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "Ctrl Alt ↑ ↓ ← →"
|
||||||
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
|
||||||
- "© ® £ € ¥ ^ ° @ { }"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
- "~ ` | · √ π τ ÷ × ¶"
|
||||||
|
- "© ® £ € ¥ ^ ° @ { }"
|
||||||
|
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
actions:
|
actions:
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
- "Ctrl Alt PgUp PgDn Home End"
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
- "F1 F2 F3 F4 F5 F6"
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
- "F7 F8 F9 F10 F11 F12"
|
||||||
- "Esc Tab Pause Insert Up Del"
|
- "Esc Tab Pause Insert Up Del"
|
||||||
@ -135,10 +135,6 @@ buttons:
|
|||||||
Tab:
|
Tab:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Tab"
|
keysym: "Tab"
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
Del:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Delete"
|
keysym: "Delete"
|
||||||
@ -151,6 +147,9 @@ buttons:
|
|||||||
Pause:
|
Pause:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Pause"
|
keysym: "Pause"
|
||||||
|
Menu:
|
||||||
|
outline: "action"
|
||||||
|
keysym: "Menu"
|
||||||
Break:
|
Break:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Break"
|
keysym: "Break"
|
||||||
@ -202,3 +201,4 @@ buttons:
|
|||||||
modifier: "Alt"
|
modifier: "Alt"
|
||||||
outline: "small"
|
outline: "small"
|
||||||
label: "Alt"
|
label: "Alt"
|
||||||
|
|
||||||
@ -1,255 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 46 }
|
|
||||||
halfwidth: { width: 17.665, height: 46 }
|
|
||||||
narrow: { width: 26.335, height: 46 }
|
|
||||||
special: { width: 35.33, height: 46 }
|
|
||||||
altline: { width: 52.67, height: 46 }
|
|
||||||
large: { width: 52.67, height: 46 }
|
|
||||||
action: { width: 59, height: 46 }
|
|
||||||
wide: { width: 59, height: 46 }
|
|
||||||
spaceline: { width: 100.96, height: 46 }
|
|
||||||
small: { width: 50.471, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t z u i o p"
|
|
||||||
- "PeriodSmall a s d f g h j k l MinusSmall"
|
|
||||||
- "Shift_L y x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Z U I O P"
|
|
||||||
- "SlashSmall A S D F G H J K L PipeSmall"
|
|
||||||
- "Shift_L Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "\\ * # $ / & - + ( ) _"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` · √ π τ ÷ × ¶ @"
|
|
||||||
- "© ® £ € ¥ ^ ° { }"
|
|
||||||
- "show_numbers_from_symbols % | < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space period Return"
|
|
||||||
eschars:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "ä è é ö ü Ä È É Ö Ü"
|
|
||||||
- "à â ê î ô À Â È Î Ô"
|
|
||||||
- "show_numbers « » ç Ç æ œ ß BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space „ “ Return"
|
|
||||||
actions:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "Ää"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
period:
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
label: "Entf"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
label: "Einfg"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
label: "Menü"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
label: "Untbr"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
label: "Pos1"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
label: "Ende"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
label: "Bild↑"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
label: "Bild↓"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Strg"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
MinusSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "-"
|
|
||||||
SlashSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "/"
|
|
||||||
PipeSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "|"
|
|
||||||
PeriodSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "."
|
|
||||||
"„":
|
|
||||||
outline: "narrow"
|
|
||||||
text: "„"
|
|
||||||
"“":
|
|
||||||
outline: "narrow"
|
|
||||||
text: "“"
|
|
||||||
"\\":
|
|
||||||
outline: "halfwidth"
|
|
||||||
_:
|
|
||||||
outline: "halfwidth"
|
|
||||||
@ -1,259 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 37 }
|
|
||||||
halfwidth: { width: 27, height: 37 }
|
|
||||||
narrow: { width: 40.5, height: 37 }
|
|
||||||
special: { width: 54, height: 37 }
|
|
||||||
altline: { width: 81, height: 37 }
|
|
||||||
large: { width: 81, height: 37 }
|
|
||||||
action: { width: 90, height: 37 }
|
|
||||||
wide: { width: 90, height: 37 }
|
|
||||||
spaceline: { width: 153, height: 37 }
|
|
||||||
small: { width: 67.4, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t z u i o p"
|
|
||||||
- "PeriodSmall a s d f g h j k l MinusSmall"
|
|
||||||
- "Shift_L y x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Z U I O P"
|
|
||||||
- "SlashSmall A S D F G H J K L PipeSmall"
|
|
||||||
- "Shift_L Y X C V B N M BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "\\ * # $ / & - + ( ) _"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` · √ π τ ÷ × ¶ @"
|
|
||||||
- "© ® £ € ¥ ^ ° { }"
|
|
||||||
- "show_numbers_from_symbols % | < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space period Return"
|
|
||||||
eschars:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "ä è é ö ü Ä È É Ö Ü"
|
|
||||||
- "à â ê î ô À Â È Î Ô"
|
|
||||||
- "show_numbers « » ç Ç æ œ ß BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space „ “ Return"
|
|
||||||
actions:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "Ää"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
period:
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
EscSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Escape"
|
|
||||||
label: "Esc"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
label: "Entf"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
label: "Einfg"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
label: "Menü"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
label: "Untbr"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
label: "Pos1"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
label: "Ende"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
label: "Bild↑"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
label: "Bild↓"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Strg"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
MinusSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "-"
|
|
||||||
SlashSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "/"
|
|
||||||
PipeSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "|"
|
|
||||||
PeriodSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "."
|
|
||||||
"„":
|
|
||||||
outline: "narrow"
|
|
||||||
text: "„"
|
|
||||||
"“":
|
|
||||||
outline: "narrow"
|
|
||||||
text: "“"
|
|
||||||
"\\":
|
|
||||||
outline: "halfwidth"
|
|
||||||
_:
|
|
||||||
outline: "halfwidth"
|
|
||||||
@ -1,220 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 46 }
|
|
||||||
action: { width: 59, height: 46 }
|
|
||||||
altline: { width: 52.67, height: 46 }
|
|
||||||
large: { width: 52.67, height: 46 }
|
|
||||||
wide: { width: 59, height: 46 }
|
|
||||||
spaceline: { width: 92.29, height: 46 }
|
|
||||||
special: { width: 44, height: 46 }
|
|
||||||
small: { width: 50.57, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l ñ"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L Ñ"
|
|
||||||
- "Shift_L Z X C V B N M DelUp"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "* # € / & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° @ { }"
|
|
||||||
- "show_numbers \\ % < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
eschars:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "á é í ó ú Á É Í Ó Ú"
|
|
||||||
- "à è ì ò ù À È Ì Ò Ù"
|
|
||||||
- "show_numbers , ü ç ï Ü Ç ï BackSpace"
|
|
||||||
- "show_letters show_symbols preferences space show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
set_view: "eschars"
|
|
||||||
outline: "altline"
|
|
||||||
label: "áÁ"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
".":
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
DelUp:
|
|
||||||
outline: "altline"
|
|
||||||
keysym: "Delete"
|
|
||||||
label: "Del"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
@ -1,224 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 37 }
|
|
||||||
action: { width: 90, height: 37 }
|
|
||||||
altline: { width: 81, height: 37 }
|
|
||||||
large: { width: 81, height: 37 }
|
|
||||||
wide: { width: 90, height: 37 }
|
|
||||||
spaceline: { width: 153, height: 37 }
|
|
||||||
special: { width: 54, height: 37 }
|
|
||||||
small: { width: 67.4, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l ñ"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L Ñ"
|
|
||||||
- "Shift_L Z X C V B N M DelUp"
|
|
||||||
- "show_numbers show_eschars preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "* # $ / & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
symbols:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° @ { }"
|
|
||||||
- "show_numbers \\ % < > = [ ] BackSpace"
|
|
||||||
- "show_letters show_eschars preferences space . Return"
|
|
||||||
eschars:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "á é í ó ú Á É Í Ó Ú"
|
|
||||||
- "à è ì ò ù À È Ì Ò Ù"
|
|
||||||
- "show_numbers ´ ü ç ï Ü Ç Ï BackSpace"
|
|
||||||
- "show_letters show_symbols preferences space show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
set_view: "eschars"
|
|
||||||
outline: "altline"
|
|
||||||
label: "áÁ"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
".":
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
EscSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Escape"
|
|
||||||
label: "Esc"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
DelUp:
|
|
||||||
outline: "altline"
|
|
||||||
keysym: "Delete"
|
|
||||||
label: "Del"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
@ -1,223 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
action: { width: 59, height: 46 }
|
|
||||||
small: { width: 50, height: 22 }
|
|
||||||
default: { width: 35.33, height: 46 }
|
|
||||||
altline: { width: 35.33, height: 46 }
|
|
||||||
wide: { width: 50, height: 46 }
|
|
||||||
spaceline: { width: 110, height: 46 }
|
|
||||||
special: { width: 35.33, height: 46 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "b é p o w v d l j z"
|
|
||||||
- "a u i e c t s r n m"
|
|
||||||
- "Shift_L y x k q g h f period BackSpace"
|
|
||||||
- "show_numbers preferences slash space show_eschars show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "Ctrl Alt Tabsmall PgUp PgDn Home End"
|
|
||||||
- "B É P O W V D L J Z"
|
|
||||||
- "A U I E C T S R N M"
|
|
||||||
- "Shift_L Y X K Q G H F - BackSpace"
|
|
||||||
- "show_numbers preferences space colon show_eschars show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
symbols:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
eschars:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters Menu Break Left Down Right"
|
|
||||||
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
Tabsmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
slash:
|
|
||||||
outline: "special"
|
|
||||||
text: "/"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "special"
|
|
||||||
label: ">_"
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "wide"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,227 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 37 }
|
|
||||||
action: { width: 90, height: 37 }
|
|
||||||
small: { width: 67.4, height: 22 }
|
|
||||||
altline: { width: 81, height: 37 }
|
|
||||||
wide: { width: 100, height: 37 }
|
|
||||||
spaceline: { width: 110, height: 37 }
|
|
||||||
special: { width: 54, height: 37 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "b é p o w v d l j z"
|
|
||||||
- "a u i e c t s r n m"
|
|
||||||
- "Shift_L y x k q g h f period BackSpace"
|
|
||||||
- "show_numbers preferences space slash show_eschars show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "B É P O W V D L J Z"
|
|
||||||
- "A U I E C T S R N M"
|
|
||||||
- "Shift_L Y X K Q G H F - BackSpace"
|
|
||||||
- "show_numbers preferences space colon show_eschars show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
symbols:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
eschars:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters Menu Break Left Down Right"
|
|
||||||
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
EscSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Escape"
|
|
||||||
label: "Esc"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
slash:
|
|
||||||
outline: "special"
|
|
||||||
text: "/"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "special"
|
|
||||||
label: ">_"
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,220 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
action: { width: 59, height: 46 }
|
|
||||||
small: { width: 50, height: 22 }
|
|
||||||
default: { width: 35.33, height: 46 }
|
|
||||||
altline: { width: 48, height: 46 }
|
|
||||||
wide: { width: 50, height: 46 }
|
|
||||||
spaceline: { width: 110, height: 46 }
|
|
||||||
special: { width: 44, height: 46 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "a z e r t y u i o p"
|
|
||||||
- "q s d f g h j k l m"
|
|
||||||
- "Shift_L w x c v b n period BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "Ctrl Alt Tabsmall PgUp PgDn Home End"
|
|
||||||
- "A Z E R T Y U I O P"
|
|
||||||
- "Q S D F G H J K L M"
|
|
||||||
- "Shift_L W X C V B N , BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
symbols:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
eschars:
|
|
||||||
- "Ctrl Alt Tabsmall ↑ ↓ ← →"
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters Menu Break Left Down Right"
|
|
||||||
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
Tabsmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "special"
|
|
||||||
label: ">_"
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,223 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 37 }
|
|
||||||
action: { width: 90, height: 37 }
|
|
||||||
small: { width: 67.4, height: 22 }
|
|
||||||
altline: { width: 81, height: 37 }
|
|
||||||
wide: { width: 100, height: 37 }
|
|
||||||
spaceline: { width: 110, height: 37 }
|
|
||||||
special: { width: 54, height: 37 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "a z e r t y u i o p"
|
|
||||||
- "q s d f g h j k l m"
|
|
||||||
- "Shift_L w x c v b n period BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "A Z E R T Y U I O P"
|
|
||||||
- "Q S D F G H J K L M"
|
|
||||||
- "Shift_L W X C V B N , BackSpace"
|
|
||||||
- "show_numbers preferences space show_eschars show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # € % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
symbols:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ $ ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
eschars:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "à â ç é è ê î ô ù û"
|
|
||||||
- "À Â Ç É È Ê Î Ô Ù Û"
|
|
||||||
- "show_numbers_from_symbols æ œ ä ë ï ö ü BackSpace"
|
|
||||||
- "show_letters preferences space show_eschars show_actions Return"
|
|
||||||
actions:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
EscSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Escape"
|
|
||||||
label: "Esc"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "special"
|
|
||||||
label: ">_"
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
show_eschars:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "eschars"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "âÂ"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
"\"":
|
|
||||||
keysym: "quotedbl"
|
|
||||||
@ -1,227 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 46 }
|
|
||||||
halfwidth: { width: 17.665, height: 46 }
|
|
||||||
special: { width: 44, height: 46 }
|
|
||||||
altline: { width: 52.67, height: 46 }
|
|
||||||
large: { width: 52.67, height: 46 }
|
|
||||||
action: { width: 59, height: 46 }
|
|
||||||
wide: { width: 59, height: 46 }
|
|
||||||
spaceline: { width: 144.96, height: 46 }
|
|
||||||
small: { width: 50.57, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "PeriodSmall a s d f g h j k l MinusSmall"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "SlashSmall A S D F G H J K L PipeSmall"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "\\ * # $ / & - + ( ) _"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` · √ π τ ÷ × ¶ @"
|
|
||||||
- "© ® £ € ¥ ^ ° { }"
|
|
||||||
- "show_numbers_from_symbols % | < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
actions:
|
|
||||||
- "TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
period:
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
MinusSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "-"
|
|
||||||
SlashSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "/"
|
|
||||||
PipeSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "|"
|
|
||||||
PeriodSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "."
|
|
||||||
"\\":
|
|
||||||
outline: "halfwidth"
|
|
||||||
_:
|
|
||||||
outline: "halfwidth"
|
|
||||||
@ -1,231 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 54, height: 37 }
|
|
||||||
halfwidth: { width: 27, height: 37 }
|
|
||||||
special: { width: 54, height: 37 }
|
|
||||||
altline: { width: 81, height: 37 }
|
|
||||||
large: { width: 81, height: 37 }
|
|
||||||
action: { width: 90, height: 37 }
|
|
||||||
wide: { width: 90, height: 37 }
|
|
||||||
spaceline: { width: 234, height: 37 }
|
|
||||||
small: { width: 67.4, height: 22 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "PeriodSmall a s d f g h j k l MinusSmall"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space show_actions Return"
|
|
||||||
upper:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "SlashSmall A S D F G H J K L PipeSmall"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space show_actions Return"
|
|
||||||
numbers:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "\\ * # $ / & - + ( ) _"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
symbols:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
|
||||||
- "~ ` · √ π τ ÷ × ¶ @"
|
|
||||||
- "© ® £ € ¥ ^ ° { }"
|
|
||||||
- "show_numbers_from_symbols % | < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space period Return"
|
|
||||||
actions:
|
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
|
||||||
- "F1 F2 F3 F4 F5 F6"
|
|
||||||
- "F7 F8 F9 F10 F11 F12"
|
|
||||||
- "Esc Tab Pause Insert Up Del"
|
|
||||||
- "show_letters_actions Menu Break Left Down Right"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: "show_prefs"
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
label: "ABC"
|
|
||||||
show_letters_actions:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "τ=\\"
|
|
||||||
show_actions:
|
|
||||||
action:
|
|
||||||
set_view: "actions"
|
|
||||||
outline: "altline"
|
|
||||||
label: ">_"
|
|
||||||
period:
|
|
||||||
outline: "large"
|
|
||||||
text: "."
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
F1:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F1"
|
|
||||||
F2:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F2"
|
|
||||||
F3:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F3"
|
|
||||||
F4:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F4"
|
|
||||||
F5:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F5"
|
|
||||||
F6:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F6"
|
|
||||||
F7:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F7"
|
|
||||||
F8:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F8"
|
|
||||||
F9:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F9"
|
|
||||||
F10:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F10"
|
|
||||||
F11:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F11"
|
|
||||||
F12:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "F12"
|
|
||||||
Esc:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Escape"
|
|
||||||
EscSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Escape"
|
|
||||||
label: "Esc"
|
|
||||||
Tab:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Tab"
|
|
||||||
TabSmall:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Tab"
|
|
||||||
label: "Tab"
|
|
||||||
Del:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Delete"
|
|
||||||
Insert:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Insert"
|
|
||||||
Menu:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Menu"
|
|
||||||
Pause:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Pause"
|
|
||||||
Break:
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Break"
|
|
||||||
Home:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Home"
|
|
||||||
End:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "End"
|
|
||||||
PgUp:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Up"
|
|
||||||
PgDn:
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Page_Down"
|
|
||||||
"↑":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Up"
|
|
||||||
"↓":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Down"
|
|
||||||
"←":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Left"
|
|
||||||
"→":
|
|
||||||
outline: "small"
|
|
||||||
keysym: "Right"
|
|
||||||
Up:
|
|
||||||
label: "↑"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Up"
|
|
||||||
Left:
|
|
||||||
label: "←"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Left"
|
|
||||||
Down:
|
|
||||||
label: "↓"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Down"
|
|
||||||
Right:
|
|
||||||
label: "→"
|
|
||||||
outline: "action"
|
|
||||||
keysym: "Right"
|
|
||||||
Ctrl:
|
|
||||||
modifier: "Control"
|
|
||||||
outline: "small"
|
|
||||||
label: "Ctrl"
|
|
||||||
Alt:
|
|
||||||
modifier: "Alt"
|
|
||||||
outline: "small"
|
|
||||||
label: "Alt"
|
|
||||||
MinusSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "-"
|
|
||||||
SlashSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "/"
|
|
||||||
PipeSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "|"
|
|
||||||
PeriodSmall:
|
|
||||||
outline: "halfwidth"
|
|
||||||
text: "."
|
|
||||||
"\\":
|
|
||||||
outline: "halfwidth"
|
|
||||||
_:
|
|
||||||
outline: "halfwidth"
|
|
||||||
@ -11,27 +11,27 @@ outlines:
|
|||||||
views:
|
views:
|
||||||
base:
|
base:
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
||||||
- "Shift_L p y f g c r l BackSpace"
|
- "q w e r t y u i o p"
|
||||||
- "a o e u i d h t n s"
|
- "a s d f g h j k l"
|
||||||
- ", q j k x b m w v z"
|
- "Shift_L z x c v b n m BackSpace"
|
||||||
- "show_numbers preferences space show_actions Return"
|
- "show_numbers preferences space show_actions Return"
|
||||||
upper:
|
upper:
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
||||||
- "Shift_L P Y F G C R L BackSpace"
|
- "Q W E R T Y U I O P"
|
||||||
- "A O E U I D H T N S"
|
- "A S D F G H J K L"
|
||||||
- ", Q J K X B M W V Z"
|
- "Shift_L Z X C V B N M BackSpace"
|
||||||
- "show_numbers preferences space show_actions Return"
|
- "show_numbers preferences space show_actions Return"
|
||||||
numbers:
|
numbers:
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "* # $ / & - _ + ( )"
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
- "1 2 3 4 5 6 7 8 9 0"
|
||||||
|
- "* # $ / & - _ + ( )"
|
||||||
|
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
symbols:
|
symbols:
|
||||||
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
- "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
|
||||||
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
|
||||||
- "© ® £ € ¥ ^ ° @ { }"
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
- "~ ` | · √ π τ ÷ × ¶"
|
||||||
|
- "© ® £ € ¥ ^ ° @ { }"
|
||||||
|
- "show_numbers_from_symbols \\ % < > = [ ] BackSpace"
|
||||||
- "show_letters preferences space period Return"
|
- "show_letters preferences space period Return"
|
||||||
actions:
|
actions:
|
||||||
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
- "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
|
||||||
@ -155,6 +155,9 @@ buttons:
|
|||||||
Pause:
|
Pause:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Pause"
|
keysym: "Pause"
|
||||||
|
Menu:
|
||||||
|
outline: "action"
|
||||||
|
keysym: "Menu"
|
||||||
Break:
|
Break:
|
||||||
outline: "action"
|
outline: "action"
|
||||||
keysym: "Break"
|
keysym: "Break"
|
||||||
@ -1,81 +0,0 @@
|
|||||||
---
|
|
||||||
outlines:
|
|
||||||
default: { width: 35.33, height: 52 }
|
|
||||||
altline: { width: 52.67, height: 52 }
|
|
||||||
wide: { width: 62, height: 52 }
|
|
||||||
spaceline: { width: 106.67, height: 52 }
|
|
||||||
special: { width: 44, height: 52 }
|
|
||||||
|
|
||||||
views:
|
|
||||||
base:
|
|
||||||
- "q w e r t y u i o p"
|
|
||||||
- "a s d f g h j k l"
|
|
||||||
- "Shift_L z x c v b n m BackSpace"
|
|
||||||
- "show_numbers preferences space slash period Return"
|
|
||||||
upper:
|
|
||||||
- "Q W E R T Y U I O P"
|
|
||||||
- "A S D F G H J K L"
|
|
||||||
- "Shift_L Z X C V B N M BackSpace"
|
|
||||||
- "show_numbers preferences space slash period Return"
|
|
||||||
numbers:
|
|
||||||
- "1 2 3 4 5 6 7 8 9 0"
|
|
||||||
- "@ # $ % & - _ + ( )"
|
|
||||||
- "show_symbols , \" ' colon ; ! ? BackSpace"
|
|
||||||
- "show_letters preferences space slash period Return"
|
|
||||||
symbols:
|
|
||||||
- "~ ` | · √ π τ ÷ × ¶"
|
|
||||||
- "© ® £ € ¥ ^ ° * { }"
|
|
||||||
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
|
|
||||||
- "show_letters preferences space slash period Return"
|
|
||||||
|
|
||||||
buttons:
|
|
||||||
Shift_L:
|
|
||||||
action:
|
|
||||||
locking:
|
|
||||||
lock_view: "upper"
|
|
||||||
unlock_view: "base"
|
|
||||||
outline: "altline"
|
|
||||||
icon: "key-shift"
|
|
||||||
BackSpace:
|
|
||||||
outline: "altline"
|
|
||||||
icon: "edit-clear-symbolic"
|
|
||||||
action: erase
|
|
||||||
preferences:
|
|
||||||
action: show_prefs
|
|
||||||
outline: "special"
|
|
||||||
icon: "keyboard-mode-symbolic"
|
|
||||||
show_numbers:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "wide"
|
|
||||||
label: "123"
|
|
||||||
show_numbers_from_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "numbers"
|
|
||||||
outline: "altline"
|
|
||||||
label: "123"
|
|
||||||
show_letters:
|
|
||||||
action:
|
|
||||||
set_view: "base"
|
|
||||||
outline: "wide"
|
|
||||||
label: "ABC"
|
|
||||||
show_symbols:
|
|
||||||
action:
|
|
||||||
set_view: "symbols"
|
|
||||||
outline: "altline"
|
|
||||||
label: "*/="
|
|
||||||
period:
|
|
||||||
outline: "special"
|
|
||||||
text: "."
|
|
||||||
slash:
|
|
||||||
outline: "special"
|
|
||||||
text: "/"
|
|
||||||
space:
|
|
||||||
outline: "spaceline"
|
|
||||||
text: " "
|
|
||||||
Return:
|
|
||||||
outline: "wide"
|
|
||||||
icon: "key-enter"
|
|
||||||
keysym: "Return"
|
|
||||||
colon:
|
|
||||||
text: ":"
|
|
||||||
13
data/langs/bg-BG.txt
Normal file
13
data/langs/bg-BG.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
bg Български
|
||||||
|
de Немски
|
||||||
|
es Испански
|
||||||
|
emoji Емоджи
|
||||||
|
fi Френски
|
||||||
|
gr Гръцки
|
||||||
|
it Италянски
|
||||||
|
no Норевежки
|
||||||
|
pl Полски
|
||||||
|
ru Руски
|
||||||
|
se Шведски
|
||||||
|
terminal Терминал
|
||||||
|
us Английски (САЩ)
|
||||||
21
data/langs/cs-CZ.txt
Normal file
21
data/langs/cs-CZ.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
be Belgická
|
||||||
|
cz Česká
|
||||||
|
cz+qwerty Česká (QWERTY)
|
||||||
|
de Německá
|
||||||
|
dk Dánská
|
||||||
|
emoji Emoji
|
||||||
|
es Španělská
|
||||||
|
fi Finská
|
||||||
|
fr Francouzská
|
||||||
|
gr Řecká
|
||||||
|
it Italská
|
||||||
|
jp Japonská
|
||||||
|
jp+kana Japonská (Kana)
|
||||||
|
no Norská
|
||||||
|
pl Polská
|
||||||
|
ru Ruská
|
||||||
|
se Švédská
|
||||||
|
terminal Terminál
|
||||||
|
th Thajská
|
||||||
|
ua Ukrajinská
|
||||||
|
us Anglická (USA)
|
||||||
0
data/langs/de-DE.txt
Normal file
0
data/langs/de-DE.txt
Normal file
2
data/langs/en-US.txt
Normal file
2
data/langs/en-US.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
emoji Emoji
|
||||||
|
terminal Terminal
|
||||||
7
data/langs/es-ES.txt
Normal file
7
data/langs/es-ES.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
us Inglés (EE.UU.)
|
||||||
|
de Alemán
|
||||||
|
el Griego
|
||||||
|
es Español
|
||||||
|
it Italiano
|
||||||
|
jp+kana Japonés (Kana)
|
||||||
|
no Noruego
|
||||||
2
data/langs/fa-IR.txt
Normal file
2
data/langs/fa-IR.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
emoji ایموجی
|
||||||
|
terminal ترمینال
|
||||||
18
data/langs/fur-IT.txt
Normal file
18
data/langs/fur-IT.txt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
be Belgjic
|
||||||
|
br Brasilian
|
||||||
|
de Todesc
|
||||||
|
dk Danês
|
||||||
|
es Spagnûl
|
||||||
|
fi Finlandês
|
||||||
|
fr Francês
|
||||||
|
it+fur Furlan
|
||||||
|
gr Grêc
|
||||||
|
it Talian
|
||||||
|
jp+kana Gjaponês (Kana)
|
||||||
|
no Norvegjês
|
||||||
|
pl Polac
|
||||||
|
ru Rus
|
||||||
|
se Svedês
|
||||||
|
terminal Terminâl
|
||||||
|
ua Ucrain
|
||||||
|
us American (USA)
|
||||||
19
data/langs/he-IL.txt
Normal file
19
data/langs/he-IL.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
be בלגית
|
||||||
|
br פורטוגזית (ברזיל)
|
||||||
|
cz צ'כית
|
||||||
|
de גרמנית
|
||||||
|
dk דנית
|
||||||
|
es ספרדית
|
||||||
|
emoji אימוג'י
|
||||||
|
fi פינית
|
||||||
|
fr צרפתית
|
||||||
|
gr יוונית
|
||||||
|
il עברית
|
||||||
|
it איטלקית
|
||||||
|
no נורווגית
|
||||||
|
pl פולנית
|
||||||
|
ru רוסית
|
||||||
|
se שוודית
|
||||||
|
terminal טרמינל
|
||||||
|
ua אוקראינית
|
||||||
|
us אנגלית (ארה"ב)
|
||||||
0
data/langs/ja-JP.txt
Normal file
0
data/langs/ja-JP.txt
Normal file
2
data/langs/pl-PL.txt
Normal file
2
data/langs/pl-PL.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
emoji emoji
|
||||||
|
terminal terminal
|
||||||
11
data/langs/ru-RU.txt
Normal file
11
data/langs/ru-RU.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
de Немецкий
|
||||||
|
es Испанский
|
||||||
|
fi Финский
|
||||||
|
gr Греческий
|
||||||
|
it Итальянский
|
||||||
|
no Норвежский
|
||||||
|
pl Польский
|
||||||
|
ru Русский
|
||||||
|
se Шведский
|
||||||
|
terminal Терминал
|
||||||
|
us Английский (США)
|
||||||
@ -12,7 +12,7 @@ desktopconf.set('bindir', bindir)
|
|||||||
|
|
||||||
desktop_file = 'sm.puri.Squeekboard.desktop'
|
desktop_file = 'sm.puri.Squeekboard.desktop'
|
||||||
|
|
||||||
i18n.merge_file(
|
i18n.merge_file('desktop',
|
||||||
input: configure_file(
|
input: configure_file(
|
||||||
input: desktop_file + '.in.in',
|
input: desktop_file + '.in.in',
|
||||||
output: desktop_file + '.in',
|
output: desktop_file + '.in',
|
||||||
|
|||||||
@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<interface>
|
|
||||||
<menu id="app-menu">
|
|
||||||
<item>
|
|
||||||
<!-- translators: This is a emmoji keyboard layout -->
|
|
||||||
<attribute name="label" translatable="yes">Emoji</attribute>
|
|
||||||
<attribute name="action">layout</attribute>
|
|
||||||
<attribute name="target">emoji</attribute>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<!-- translators: This is a terminal keyboard layout -->
|
|
||||||
<attribute name="label" translatable="yes">Terminal</attribute>
|
|
||||||
<attribute name="action">layout</attribute>
|
|
||||||
<attribute name="target">terminal</attribute>
|
|
||||||
</item>
|
|
||||||
<section>
|
|
||||||
<item>
|
|
||||||
<attribute name="label" translatable="yes">Keyboard Settings</attribute>
|
|
||||||
<attribute name="action">settings</attribute>
|
|
||||||
</item>
|
|
||||||
</section>
|
|
||||||
</menu>
|
|
||||||
</interface>
|
|
||||||
19
data/popup.ui
Normal file
19
data/popup.ui
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated with glade 3.22.1 -->
|
||||||
|
<interface>
|
||||||
|
<requires lib="gtk+" version="3.16"/>
|
||||||
|
<object class="GtkPopoverMenu" id="main_menu">
|
||||||
|
<property name="can_focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox" id="box">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can_focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="submenu">main</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</interface>
|
||||||
@ -1,16 +1,9 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Squeekboard
|
Name=Squeekboard
|
||||||
GenericName=On Screen Keyboard
|
GenericName=Squeekboard Virtual Keyboard
|
||||||
Comment=An on screen virtual keyboard
|
Comment=Virtual Keyboard
|
||||||
Exec=@bindir@/squeekboard
|
Exec=@bindir@/squeekboard
|
||||||
Icon=input-keyboard-symbolic
|
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
Categories=GTK;Utility;
|
Categories=GTK;Utility;
|
||||||
OnlyShowIn=Phosh;
|
|
||||||
X-Phosh-UsesFeedback=true
|
|
||||||
X-GNOME-Autostart-Phase=Panel
|
|
||||||
X-GNOME-Provides=inputmethod
|
|
||||||
X-GNOME-Autostart-Notify=true
|
|
||||||
X-GNOME-AutoRestart=true
|
|
||||||
|
|||||||
@ -1,13 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gresources>
|
<gresources>
|
||||||
<gresource prefix="/sm/puri/squeekboard">
|
<gresource prefix="/sm/puri/squeekboard">
|
||||||
<file compressed="true">common.css</file>
|
|
||||||
<file compressed="true">style.css</file>
|
<file compressed="true">style.css</file>
|
||||||
<file compressed="true">style-Adwaita:dark.css</file>
|
<file compressed="true">style-Adwaita:dark.css</file>
|
||||||
<file compressed="true" preprocess="xml-stripblanks">popover.ui</file>
|
<file compressed="true" preprocess="xml-stripblanks">popup.ui</file>
|
||||||
<file>icons/key-enter.svg</file>
|
<file>icons/key-enter.svg</file>
|
||||||
<file>icons/key-shift.svg</file>
|
<file>icons/key-shift.svg</file>
|
||||||
<file>icons/keyboard-mode-symbolic.svg</file>
|
<file>icons/keyboard-mode-symbolic.svg</file>
|
||||||
<file>icons/zwnj.svg</file>
|
|
||||||
</gresource>
|
</gresource>
|
||||||
</gresources>
|
</gresources>
|
||||||
|
|||||||
@ -1,22 +1,34 @@
|
|||||||
/* Adwaita-dark style keyboard */
|
|
||||||
sq_view {
|
sq_view {
|
||||||
background-color: rgba(0, 0, 0, 255);
|
background-color: rgba(0, 0, 0, 255);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
font-family: cantarell, sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_view sq_button {
|
sq_view sq_button {
|
||||||
color: #deddda;
|
color: #deddda;
|
||||||
background: #464448;
|
background: #464448;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: #5e5c64;
|
||||||
|
border-radius: 3px;
|
||||||
|
margin: 4px 2px 4px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
sq_view.wide sq_button {
|
||||||
|
margin: 1px 1px 1px 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button:active {
|
sq_button:active {
|
||||||
background: #747077;
|
background: #747077;
|
||||||
|
border-color: #96949d;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button.altline,
|
sq_button.altline,
|
||||||
sq_button.special,
|
sq_button.special,
|
||||||
sq_button.wide {
|
sq_button.wide {
|
||||||
background: #2b292f;
|
background: #2b292f;
|
||||||
|
border-color: #3e3a44;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button.latched {
|
sq_button.latched {
|
||||||
@ -29,12 +41,20 @@ sq_button.locked {
|
|||||||
color: #1c71d8;
|
color: #1c71d8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sq_button.action {
|
||||||
|
font-size: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sq_button.small {
|
||||||
|
font-size: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
#Return {
|
#Return {
|
||||||
background: #1c71d8;
|
background: #1c71d8;
|
||||||
|
border-color: #1a5fb4;
|
||||||
}
|
}
|
||||||
|
|
||||||
#Return:active {
|
#Return:active {
|
||||||
background: #1c71d8;
|
background: #1c71d8;
|
||||||
|
border-color: #3584e4;
|
||||||
}
|
}
|
||||||
|
|
||||||
@import url("resource:///sm/puri/squeekboard/common.css");
|
|
||||||
|
|||||||
@ -1,47 +1,63 @@
|
|||||||
/* Keyboard style */
|
|
||||||
sq_view {
|
sq_view {
|
||||||
background-color: mix(@theme_base_color, @theme_fg_color, 0.1);
|
background-color: @theme_base_color; /*rgba(0, 0, 0, 255);*/
|
||||||
box-shadow:inset 0 1px 0 0 mix(@borders, @theme_base_color, 0.8);
|
color: @theme_text_color; /*#ffffff;*/
|
||||||
|
font-family: cantarell, sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button {
|
sq_view sq_button {
|
||||||
color: @theme_fg_color;
|
color: @theme_fg_color; /*#deddda;*/
|
||||||
background: alpha(@theme_fg_color, 0.07);
|
background: mix(@theme_bg_color, @theme_base_color, -0.5); /* #464448; */
|
||||||
box-shadow: 0 1px 0 0 rgba(0,0,0,0.2);
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: @borders; /* #5e5c64;*/
|
||||||
|
border-radius: 3px;
|
||||||
|
margin: 4px 2px 4px 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button:active {
|
sq_view.wide sq_button {
|
||||||
background: alpha(@theme_fg_color, 0.11);
|
margin: 1px 1px 1px 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
sq_button:active,
|
||||||
|
sq_button.altline:active,
|
||||||
|
sq_button.special:active,
|
||||||
|
sq_button.wide:active {
|
||||||
|
background: mix(@theme_bg_color, @theme_selected_bg_color, 0.4);/* #747077; */
|
||||||
|
border-color: mix(@borders, @theme_selected_fg_color, 0.5);/* #96949d; */
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button.altline,
|
sq_button.altline,
|
||||||
sq_button.special {
|
sq_button.special,
|
||||||
background: alpha(@theme_fg_color, 0.15);
|
sq_button.wide {
|
||||||
}
|
background: mix(@theme_bg_color, @theme_base_color, 0.5); /*#2b292f;*/
|
||||||
|
border-color: @borders; /* #3e3a44; */
|
||||||
sq_button.altline:active,
|
|
||||||
sq_button.special:active {
|
|
||||||
background: alpha(@theme_fg_color, 0.2);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button.latched {
|
sq_button.latched {
|
||||||
background: alpha(@theme_fg_color, 0.2);
|
background: @theme_fg_color; /*#ffffff;*/
|
||||||
color: alpha(@theme_fg_color, 0.8);
|
color: @theme_bg_color; /*#2b292f;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
sq_button.locked {
|
sq_button.locked {
|
||||||
background: alpha(@theme_fg_color, 0.5);
|
background: @theme_fg_color; /*#ffffff;*/
|
||||||
color: @theme_base_color;
|
color: mix(@theme_selected_bg_color, @theme_bg_color, 0.4); /*#2b292f;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
sq_button.action {
|
||||||
|
font-size: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sq_button.small {
|
||||||
|
font-size: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#Return {
|
#Return {
|
||||||
background: @theme_selected_bg_color;
|
background: @theme_selected_bg_color; /* #1c71d8; */
|
||||||
color: @theme_selected_fg_color;
|
border-color: @borders; /*#1a5fb4;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#Return:active {
|
#Return:active {
|
||||||
background: mix(@theme_selected_bg_color, black, 0.2);
|
background: mix(@theme_selected_bg_color, @theme_bg_color, 0.4); /*#1c71d8;*/
|
||||||
color: mix(@theme_selected_fg_color, black, 0.2);
|
border-color: @borders; /*#3584e4;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
@import url("resource:///sm/puri/squeekboard/common.css");
|
|
||||||
|
|||||||
1
debian/cargo/config
vendored
1
debian/cargo/config
vendored
@ -9,3 +9,4 @@ replace-with = 'vendored-sources'
|
|||||||
|
|
||||||
[source.vendored-sources]
|
[source.vendored-sources]
|
||||||
directory = '/usr/share/cargo/registry'
|
directory = '/usr/share/cargo/registry'
|
||||||
|
|
||||||
|
|||||||
567
debian/changelog
vendored
567
debian/changelog
vendored
@ -1,570 +1,3 @@
|
|||||||
squeekboard (1.23.0) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Vasil Pupkin ]
|
|
||||||
* Add Belarusian translation
|
|
||||||
|
|
||||||
[ Pierre Michel Augustin ]
|
|
||||||
* Add Haitian Creole translation
|
|
||||||
* Update Haitian Creole translation
|
|
||||||
* Update Haitian Creole translation
|
|
||||||
|
|
||||||
[ Luciano ]
|
|
||||||
* add french canadian layout (QWERTY + accented letters)
|
|
||||||
|
|
||||||
[ Danial Behzadi ]
|
|
||||||
* Fix Persian layout
|
|
||||||
|
|
||||||
[ uzanto uz ]
|
|
||||||
* Add Spanish terminal-keyboard-layouts
|
|
||||||
|
|
||||||
[ MoonlightWave-12 ]
|
|
||||||
* Improve Spanish terminal-keyboard-layouts
|
|
||||||
* Update links in the documentation
|
|
||||||
* doc/tutorial.md: Remove outdated information about translations
|
|
||||||
* Improve layouts of us-terminal-keyboards
|
|
||||||
* us.yaml and us_wide.yaml: Change outline of 123- and ABC-keys to altline
|
|
||||||
* us.yaml and us_wide.yaml: Change the outline of the period-key
|
|
||||||
* Fix Swiss layouts
|
|
||||||
* Add German terminal-keyboard-layout
|
|
||||||
* data/keyboards/email/us.yaml: fix styling of @-key
|
|
||||||
* data/keyboards/de*.yaml: Change äÄ-label to Ää
|
|
||||||
* data/keyboards/*.yaml: Change "abc" to "ABC"
|
|
||||||
* Add wide emoji-layout
|
|
||||||
* Update dependencies
|
|
||||||
|
|
||||||
-- MoonlightWave-12 <135532-MoonlightWave-12@users.noreply.gitlab.gnome.org> Fri, 08 Mar 2024 10:46:37 +0100
|
|
||||||
|
|
||||||
squeekboard (1.22.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Asier Sarasua Garmendia ]
|
|
||||||
* Add Basque translation
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* state: Make size independent of scaling factor
|
|
||||||
* cleanup: Remove debug prints
|
|
||||||
* tests: Make panel manager modifications pure
|
|
||||||
* panel: Fix sizing on output reconfiguration
|
|
||||||
* Update deps
|
|
||||||
|
|
||||||
[ Undef ]
|
|
||||||
* layout: fix uppercase dvorak terminal mode
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Sat, 01 Apr 2023 13:46:23 +0000
|
|
||||||
|
|
||||||
squeekboard (1.21.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* CI: target bookworm for "future" job
|
|
||||||
* keyboard: Remove unused field
|
|
||||||
* style: Use layout name as css class
|
|
||||||
* style: Give gr+polytonic a custom font
|
|
||||||
* docs: Add NEWS.md
|
|
||||||
* docs: Remove obsolete amber instructions
|
|
||||||
* docs: Update Cargo.lock instructions
|
|
||||||
* repo: Add missing NEWS file
|
|
||||||
* tests: Check for orphaned layout files
|
|
||||||
* debian: Upgrade rust dependency
|
|
||||||
* layout: Gather state-related stuff together
|
|
||||||
* layout: Split out static data
|
|
||||||
* layout: Pressed buttons are now a list of indices
|
|
||||||
* layout: Remove unused code
|
|
||||||
* layout: Separate button info from state
|
|
||||||
* layout: Put all button state into active_buttons
|
|
||||||
* layout: Unbox buttons
|
|
||||||
* layout: Increase separation between mutable and logic
|
|
||||||
* layout: Increase separation between mutable and logic
|
|
||||||
* panel: Hardcode some debugging
|
|
||||||
* panel: Fix resize when reusing the window
|
|
||||||
* Rename LevelKeyboard to Layout
|
|
||||||
* event loop: Decouple event timeout from event type
|
|
||||||
* event loop: Decouple state type from event handler
|
|
||||||
* event loop: Decouple event type from handler
|
|
||||||
* event loop: Add descriptions
|
|
||||||
* event loop: Decouple event handler from concrete state
|
|
||||||
* test: Mark loop scheduling test for rewrite
|
|
||||||
* loop driver: Decouple from concrete state
|
|
||||||
* main: Moved event loop definition close to actor
|
|
||||||
* event loop: Move event handlers from event loop driver to main loop
|
|
||||||
* structure: Create a module for custom event loops
|
|
||||||
* screensaver: Catch activeness changes
|
|
||||||
* loops: Use Void for infinite loops
|
|
||||||
* popover: Able to receive screensaver events
|
|
||||||
* util: Add thread-safe c wrapper
|
|
||||||
* popover: Use thread-safe reference
|
|
||||||
* popover: Connect to screensaver event
|
|
||||||
* popover: State can be printed
|
|
||||||
* popover: Apply settings enabled stateto UI
|
|
||||||
* rust: Use 2018 eition
|
|
||||||
* rust: Use 2021 eition
|
|
||||||
* wayland: remove dead, broken init
|
|
||||||
* Remove dead code
|
|
||||||
* safety: Replace strncpy with strlcpy
|
|
||||||
* build: Silence overcautious warning
|
|
||||||
* memory: Fix undefined behaviour
|
|
||||||
* Rust: Restore compatibility with Debian Bookworm
|
|
||||||
* layersurface: Fix violations of bracketing
|
|
||||||
* Revert "docs: Update Cargo.lock instructions"
|
|
||||||
* Update Cargo.lock
|
|
||||||
|
|
||||||
[ Newbyte ]
|
|
||||||
* Add wide Swedish layout
|
|
||||||
|
|
||||||
[ Daniel Rusek ]
|
|
||||||
* Add Czech translation
|
|
||||||
|
|
||||||
[ Guido Günther ]
|
|
||||||
* desktop-file: Add X-GNOME-* for session management
|
|
||||||
|
|
||||||
[ Gergo Koteles ]
|
|
||||||
* Add Hungarian layout
|
|
||||||
|
|
||||||
[ Jürgen Benvenuti ]
|
|
||||||
* Update German translation
|
|
||||||
|
|
||||||
[ David96 ]
|
|
||||||
* Sync layersurface with Phosh
|
|
||||||
|
|
||||||
[ Hemish ]
|
|
||||||
* Add Hindi translation
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Thu, 16 Feb 2023 15:35:32 +0000
|
|
||||||
|
|
||||||
squeekboard (1.20.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* state: Don't animate when force-hidden
|
|
||||||
* build: Use Cargo.lock included with the repo by default
|
|
||||||
* build: Update Cargo.lock.newer
|
|
||||||
|
|
||||||
[ Darren R ]
|
|
||||||
* added US Dvorak Terminal
|
|
||||||
|
|
||||||
[ Efstathios Iosifidis ]
|
|
||||||
* Add Greek translation
|
|
||||||
|
|
||||||
[ Goran Vidović ]
|
|
||||||
* Add Croatian translation
|
|
||||||
|
|
||||||
[ Sebastian Krzyszkowiak ]
|
|
||||||
* data: Set an icon in the desktop file
|
|
||||||
* data: Indicate that Squeekboard provides haptic feedback
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Sat, 03 Sep 2022 14:21:57 +0000
|
|
||||||
|
|
||||||
squeekboard (1.19.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* docs: Describe layouts
|
|
||||||
* glib: Fix import
|
|
||||||
* state: Record layout choice
|
|
||||||
* doc: Describe how to control debugging mode
|
|
||||||
* state: Include layout choice in visible outcome
|
|
||||||
* state: Store layout override
|
|
||||||
* state: Decide panel arrangement
|
|
||||||
* state: Use dummy layout command
|
|
||||||
* state: Use IM hint and purpose for layout selection
|
|
||||||
* main: Dry-load layout in response to the layout command
|
|
||||||
* state: Become the source of layout choice
|
|
||||||
* cargo: Halt overzealous upgrader
|
|
||||||
* ci: Use bookworm for online builds
|
|
||||||
* build: Generate files before compiling sources
|
|
||||||
* gtk: Persist panel state
|
|
||||||
* build: Update Cargo.lock
|
|
||||||
|
|
||||||
[ Luke Luo ]
|
|
||||||
* Add Chinese (China) translation
|
|
||||||
|
|
||||||
[ Éloi Rivard ]
|
|
||||||
* Add French translation
|
|
||||||
|
|
||||||
[ Laurent Laffont ]
|
|
||||||
* Add FR+Bépo layout
|
|
||||||
|
|
||||||
[ Bytez ]
|
|
||||||
* Fixed missing characters in eschars view in italian layout.
|
|
||||||
* Replaced foreign characters.
|
|
||||||
|
|
||||||
[ Aleksandr Melman ]
|
|
||||||
* Add Russian translation
|
|
||||||
|
|
||||||
[ skysphr ]
|
|
||||||
* Added Georgian layout
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Wed, 06 Jul 2022 06:10:40 +0000
|
|
||||||
|
|
||||||
squeekboard (1.18.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Hugo Carvalho ]
|
|
||||||
* Add Portuguese translation
|
|
||||||
|
|
||||||
[ Мирослав Николић ]
|
|
||||||
* Add Serbian translation
|
|
||||||
|
|
||||||
[ William Wold ]
|
|
||||||
* Do not reset pending state on zwp_input_method_v2.done
|
|
||||||
|
|
||||||
[ Balázs Úr ]
|
|
||||||
* Add Hungarian translation
|
|
||||||
|
|
||||||
[ Emin Tufan Çetin ]
|
|
||||||
* Add Turkish translation
|
|
||||||
|
|
||||||
[ Piotr Drąg ]
|
|
||||||
* Add Polish translation
|
|
||||||
|
|
||||||
[ Pablo Correa Gómez ]
|
|
||||||
* Add Spanish translation
|
|
||||||
|
|
||||||
[ Vittorio Monti ]
|
|
||||||
* Add Italian translation
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* build: Replace missing crates.io dependency with Purism-hosted one
|
|
||||||
* ci: Allow failure on sid
|
|
||||||
* build: Update clap on newer Debian
|
|
||||||
* panel: Use scaling to set height
|
|
||||||
* layouts: Add Greek Polytonic
|
|
||||||
* debug: Add dbus interface to control debug prints
|
|
||||||
* output: Store physical size
|
|
||||||
* state: Derive panel size from physical click target size
|
|
||||||
* Clean up size types
|
|
||||||
* state: Add sizing unit test
|
|
||||||
* layouts: Register gr_wide
|
|
||||||
* CI: Build Rust code reference
|
|
||||||
* CI: Add gitlab pages deployment
|
|
||||||
* panel: Split away panel handling
|
|
||||||
* cargo: Add zbus to newer Debian
|
|
||||||
* docs: Update location
|
|
||||||
* docs: Link to reference
|
|
||||||
* docs: Make index more logical
|
|
||||||
* Update Cargo lock
|
|
||||||
|
|
||||||
[ Sotiris Papadopoulos ]
|
|
||||||
* Update gr.yaml to take advantage of more space per symbol. Creation of a wide variant...
|
|
||||||
|
|
||||||
[ Arnaud Ferraris ]
|
|
||||||
* state: fix "wide mode" detection in portrait orientation
|
|
||||||
* layout: allow stretching the layout by a small amount
|
|
||||||
* layout: fix build on i386
|
|
||||||
|
|
||||||
[ Sungjoon Moon ]
|
|
||||||
* Add Korean translation
|
|
||||||
|
|
||||||
[ Quentin PAGÈS ]
|
|
||||||
* Add Occitan translation
|
|
||||||
|
|
||||||
[ Zurab Kargareteli ]
|
|
||||||
* Add Georgian translation
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Mon, 25 Apr 2022 13:12:36 +0000
|
|
||||||
|
|
||||||
squeekboard (1.17.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* docs: Detail the release process better
|
|
||||||
* cleanup: Remove unused header lines
|
|
||||||
* docstrings: Clarify the purpose of Receiver
|
|
||||||
* wayland: Move initialization to the Rust side
|
|
||||||
* ffi: Remove unnecessary pointers to InputMethod
|
|
||||||
* outputs: Clean up for more Rust usage
|
|
||||||
* outputs: Notify the state manager about changes
|
|
||||||
* outputs: Handle removal
|
|
||||||
* Save outputs state
|
|
||||||
* Store preferred output
|
|
||||||
* deps: Vendor assert_matches
|
|
||||||
* Carry output information on visible command all the way to C
|
|
||||||
* Don't reach for globals to choose output
|
|
||||||
* visibility: Forward panel height information to window creation
|
|
||||||
* outputs: Remove ui manager
|
|
||||||
* output: Use new source of panel height information
|
|
||||||
* panel: Apply a hard limit of 1/2 height
|
|
||||||
* cargo: Update lockfile
|
|
||||||
|
|
||||||
[ Cosmin Humeniuc ]
|
|
||||||
* Add Romanian layout
|
|
||||||
|
|
||||||
[ Sam Hewitt ]
|
|
||||||
* data: Update stylesheet with upstream design
|
|
||||||
|
|
||||||
[ Tor ]
|
|
||||||
* Make compatible with latest cargo deps
|
|
||||||
|
|
||||||
[ Luís Fernando Stürmer da Rosa ]
|
|
||||||
* Update Brazilian Portuguese translation
|
|
||||||
|
|
||||||
[ Fran Dieguez ]
|
|
||||||
* Add Galician translation
|
|
||||||
|
|
||||||
[ William Wold ]
|
|
||||||
* Check if dbus handler is null before using
|
|
||||||
|
|
||||||
[ Yosef Or Boczko ]
|
|
||||||
* Add Hebrew translation
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Tue, 25 Jan 2022 11:24:04 +0000
|
|
||||||
|
|
||||||
squeekboard (1.16.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* build: Remove regex crate
|
|
||||||
* ci: Use bookworm image
|
|
||||||
* build: Pin transitive dependencies
|
|
||||||
* cargo: Update Cargo.lock with pinned dependencies
|
|
||||||
* CI: Use byzantium as the base
|
|
||||||
* cargo: Bump dependencies
|
|
||||||
|
|
||||||
[ Guido Günther ]
|
|
||||||
* po: Fix ui file name
|
|
||||||
* entry: Mark as executable
|
|
||||||
* entry: Only activate purpose timer when focused
|
|
||||||
* entry: Add another input hint
|
|
||||||
* Add entry test using GTK4
|
|
||||||
|
|
||||||
[ Rafael Fontenelle ]
|
|
||||||
* Add Brazilian Portuguese translation
|
|
||||||
|
|
||||||
[ Yuri Chornoivan ]
|
|
||||||
* Add Ukrainian translation
|
|
||||||
|
|
||||||
[ Luna Jernberg ]
|
|
||||||
* Add Swedish Translation
|
|
||||||
* Update sv.po
|
|
||||||
* Update LINGUAS
|
|
||||||
|
|
||||||
[ Fabio Tomat ]
|
|
||||||
* Add Friulian translation
|
|
||||||
|
|
||||||
[ Daniel Șerbănescu ]
|
|
||||||
* Add Romanian translation
|
|
||||||
|
|
||||||
[ Matej Urbančič ]
|
|
||||||
* Add Slovenian translation
|
|
||||||
|
|
||||||
[ Nathan Follens ]
|
|
||||||
* Add Dutch translation
|
|
||||||
|
|
||||||
[ Jiri Grönroos ]
|
|
||||||
* Add Finnish translation
|
|
||||||
|
|
||||||
[ Danial Behzadi ]
|
|
||||||
* Add Persian translation
|
|
||||||
|
|
||||||
[ Jordi Mas i Hernandez ]
|
|
||||||
* Add Catalan translation
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Tue, 25 Jan 2022 11:24:04 +0000
|
|
||||||
|
|
||||||
squeekboard (1.15.0-1) experimental; urgency=medium
|
|
||||||
|
|
||||||
[ Khaled Eldoheiri ]
|
|
||||||
* Introduce Arabic keyboard layout
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* Docs: Release procedure
|
|
||||||
* build: Fix "any" dependency versioning
|
|
||||||
* readme: Mention the layout guide
|
|
||||||
* dbus: Hint that maybe squeekboard is running
|
|
||||||
* readme: Change self-reference to repo to gnome
|
|
||||||
* docs: Move env vars section to debugging
|
|
||||||
* readme: Clarify basic running steps
|
|
||||||
* readme: Put emphasis on being an input method
|
|
||||||
* readme: Update features
|
|
||||||
* ci: Use cached artifacts in the test
|
|
||||||
* ci: Move release test to the start
|
|
||||||
* ci: Start lintian test right after deb build
|
|
||||||
* ci: Add git revision and CI pipeline number to .deb artifacts
|
|
||||||
* ci: Use bookworm image
|
|
||||||
* ci: Reformat yaml file
|
|
||||||
* ci: Include pre-build style check
|
|
||||||
* popover: Fix reentrancy problem
|
|
||||||
* submission: Wrap the structure in a safe wrapper
|
|
||||||
* util: Add ArcWrapped
|
|
||||||
* animation: Prototype a way of handling state and applying it separately
|
|
||||||
* state: Connect the animation state machine to the rest
|
|
||||||
* event_loop: Separate and use for physical keyboard presence
|
|
||||||
* Revert "util: Add ArcWrapped"
|
|
||||||
* Revert "ci: Use bookworm image"
|
|
||||||
* ci: Fix formatting
|
|
||||||
* ci: Make indentation close to original again
|
|
||||||
* cargo: version bump
|
|
||||||
|
|
||||||
[ Jordi ]
|
|
||||||
* Introduce Swiss French keyboard layout
|
|
||||||
* improve accents layout behavior and code cleaning
|
|
||||||
|
|
||||||
[ Plamen Stoev ]
|
|
||||||
* Rename bg to bg+phonetic
|
|
||||||
* Add 'bg' layout
|
|
||||||
* Translate more layout names in Bulgarian
|
|
||||||
|
|
||||||
[ William Wold ]
|
|
||||||
* Show error when Layer Shell is not supported
|
|
||||||
* Update entry.py file path in readme
|
|
||||||
* Update zwp_text_input_v3 (comment changes only)
|
|
||||||
* Update zwp_input_method_v2
|
|
||||||
|
|
||||||
[ Patrick Jörg ]
|
|
||||||
* Introduce Swiss German keyboard layout
|
|
||||||
* Introducing ch+de layout and modified ch.yaml fallback
|
|
||||||
* Added ch_wide
|
|
||||||
|
|
||||||
[ ZenWalker ]
|
|
||||||
* layersurface: avoid duplicate assignment
|
|
||||||
|
|
||||||
[ T. Zack Crawford ]
|
|
||||||
* Update tutorial.md to clarify steps in creating a custom layout
|
|
||||||
|
|
||||||
[ Guido Günther ]
|
|
||||||
* gitlab-ci: Adjust CI tags
|
|
||||||
* gitlab-ci: Drop build for outdated distributions
|
|
||||||
* data: Fix build with meson 0.60.0
|
|
||||||
* main: Remove trailing whitespace
|
|
||||||
* main: Honor --help and -h
|
|
||||||
* eek-renderer: Add log domain
|
|
||||||
* eek-renderer: Fix indentation
|
|
||||||
* eek-renderer: Honor theme changes (Closes: #296)
|
|
||||||
* main: Drop broken support G_BUS_TYPE_SYSTEM
|
|
||||||
* main: Avoid two error variables in the same function
|
|
||||||
* main: Use dark theme when run in a Phosh session (Closes: #242)
|
|
||||||
* gtk-keyboard: Don't set variable to NULL twice in a row
|
|
||||||
* renderer: Use `g_debug ()`
|
|
||||||
* main: Add debug flag to always show squeekboard on start
|
|
||||||
* renderer: Disconnect theme change signal handler
|
|
||||||
* main: Add debug flag to show GTK inspector
|
|
||||||
* README: Document SQUEEKBOARD_DEBUG environment variable
|
|
||||||
* Move style-check to separate script
|
|
||||||
* Honor input-purpose PIN
|
|
||||||
* entry: Use a scrolled window
|
|
||||||
* entry: Set a margin on the grids
|
|
||||||
* entry: Add a random text entry field
|
|
||||||
* imservice: Invoke eekboard_context_service_set_hint_purpose unconditionally
|
|
||||||
(Closes: #311)
|
|
||||||
* langs: Don't use empty translation file (Closes: #313)
|
|
||||||
* Initialize gettext
|
|
||||||
* Reuse the unused popover ui file for i18n (Closes: #315)
|
|
||||||
* po: Add German translation
|
|
||||||
* gresources: Drop popup.ui
|
|
||||||
* Revert "gresources: Drop popup.ui"
|
|
||||||
* gitlab-ci: Add PKG_ONLY
|
|
||||||
* layout: Drop trailing whitespace
|
|
||||||
* Use special pin keyboard
|
|
||||||
* layout: Keep content purpose around
|
|
||||||
* renderer: Set style class based on input purpose
|
|
||||||
* pin: Use less margin
|
|
||||||
* debian: Install translations
|
|
||||||
* debian: Switch to dh 13
|
|
||||||
* debian: Install desktop file
|
|
||||||
* eekboard-context-service: Don't translate property names
|
|
||||||
* server-context-servide: Don't translate application name
|
|
||||||
* data: Make generic name truly generic
|
|
||||||
* po: Add desktop file to translatable files
|
|
||||||
* Add URL and EMail keyboard variants for us (Closes: #65)
|
|
||||||
* gitignore: Drop zanata dir
|
|
||||||
* gitignore: Ignore generated po files
|
|
||||||
* popover: Move Emoji and Terminal to ui file
|
|
||||||
* popover: Add translator notes
|
|
||||||
* popover: Make the ui file match the code file name
|
|
||||||
* Remove emoji and terminal from translations
|
|
||||||
* popover: Don't complain about missing translations
|
|
||||||
* Drop custom translation handling
|
|
||||||
* Drop locale_config
|
|
||||||
* Remove custom translations
|
|
||||||
|
|
||||||
[ PhilProg ]
|
|
||||||
* Add documentation about compositors
|
|
||||||
|
|
||||||
[ Norayr Chilingarian ]
|
|
||||||
* armenian typewriter and phonetic keyboards.
|
|
||||||
* armenian layout also added to meson.build etc.
|
|
||||||
|
|
||||||
[ Arnaud Ferraris ]
|
|
||||||
* resources: add wide FR terminal keyboard
|
|
||||||
|
|
||||||
[ Sebastian Krzyszkowiak ]
|
|
||||||
* renderer: Take context scale into account when drawing icons (Closes: #139)
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Sun, 19 Dec 2021 14:11:06 +0000
|
|
||||||
|
|
||||||
squeekboard (1.14.0pureos0~amber0) amber-phone; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* data: Split into loading and parsing
|
|
||||||
* layout: Remove unused code
|
|
||||||
* build: Fix unnecessary shell quotes
|
|
||||||
* popover: Allow spanning outside panel area
|
|
||||||
* cargo: Update dependencies before release
|
|
||||||
|
|
||||||
[ undef ]
|
|
||||||
* Fix typos jp keyboard comments
|
|
||||||
|
|
||||||
[ anteater ]
|
|
||||||
* use the correct GtkStyleProviderPriority to indicate that the styles are provided by the application
|
|
||||||
* remove some unnecessary unsafe code
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Sat, 15 May 2021 12:45:20 +0000
|
|
||||||
|
|
||||||
squeekboard (1.13.0pureos0~amber0) amber-phone; urgency=medium
|
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
|
||||||
* layout: Latch keys when clicked twice
|
|
||||||
* layout: Add stateless view switching
|
|
||||||
* layout: Plug in stateless view switching
|
|
||||||
* layout: Remove the little abomination of view change promise
|
|
||||||
* view: Ąto-unlatching when multiple latching buttons pressed
|
|
||||||
* renderer: Bring button drawing closer to Rust
|
|
||||||
* ffi: Eliminate squeek_button and squeek_row
|
|
||||||
* imservice: Increment serials on receiving done, not sending commit
|
|
||||||
* input-method: Fix commit/done mixup in protocol text
|
|
||||||
* CI: fix xheck_tag to be compatible with Amber
|
|
||||||
* italian: Fix colon
|
|
||||||
* popover: Fix prematurely deallocated CString
|
|
||||||
* Rust: Remove unnecessary no_mangle statements to silence warnings
|
|
||||||
* renderer: Reduce reliance on knowing the transform
|
|
||||||
* renderer: Split mutable geometry and place it directly in GtkKeyboard
|
|
||||||
* Revert "moved data/langs/he_IL.txt -> data/langs/he-IL.txt to better conform with existing translations."
|
|
||||||
* layout: Make it possible to opt out of latching per-key
|
|
||||||
* renderer: Mark latched buttons differently than locked
|
|
||||||
* appearance: Colour latched/locked according to design
|
|
||||||
* docs: Describe view switching
|
|
||||||
* language-terminal: Place keyboards in a sub-path
|
|
||||||
* layout selection: Fix emoji and number
|
|
||||||
* rust: Fix compiler warnings
|
|
||||||
* layout: Take into account text purpose again
|
|
||||||
* layouts: Make selection testable
|
|
||||||
* layouts: Stop assuming that layout name always changes on switch
|
|
||||||
* Cargo: Version bump
|
|
||||||
|
|
||||||
[ J.D. Laub ]
|
|
||||||
* Add US Dvorak layout (and Colemak wide)
|
|
||||||
* Add US Dvorak layout (and Colemak wide)
|
|
||||||
|
|
||||||
[ Jordi Masip ]
|
|
||||||
* Catalan keyboard layout
|
|
||||||
|
|
||||||
[ Myth ]
|
|
||||||
* Added hebrew keyboard layout
|
|
||||||
|
|
||||||
[ David96 ]
|
|
||||||
* Add Mod4 (Windows) key
|
|
||||||
|
|
||||||
[ Panawat Wong-klaew ]
|
|
||||||
* Add wide Thai keyboard layout
|
|
||||||
|
|
||||||
[ Guido Günther ]
|
|
||||||
* server-main: Add quit()
|
|
||||||
* server-main: Properly register to gnome-session (Closes: #274)
|
|
||||||
|
|
||||||
[ Kozova1 ]
|
|
||||||
* Added Hebrew translations for most layouts.
|
|
||||||
* moved data/langs/he_IL.txt -> data/langs/he-IL.txt to better conform with existing translations.
|
|
||||||
* Fixed Hebrew layout.
|
|
||||||
* moved data/langs/he_IL.txt -> data/langs/he-IL.txt to better conform with existing translations.
|
|
||||||
|
|
||||||
[ M33 ]
|
|
||||||
* Revert "Update tests/meson.build"
|
|
||||||
|
|
||||||
-- Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Mon, 12 Apr 2021 10:40:32 +0000
|
|
||||||
|
|
||||||
squeekboard (1.12.0pureos0~amber0) amber-phone; urgency=medium
|
squeekboard (1.12.0pureos0~amber0) amber-phone; urgency=medium
|
||||||
|
|
||||||
[ Dorota Czaplejewicz ]
|
[ Dorota Czaplejewicz ]
|
||||||
|
|||||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
12
|
||||||
15
debian/control
vendored
15
debian/control
vendored
@ -3,12 +3,11 @@ Section: x11
|
|||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>
|
Maintainer: Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
cargo-mozilla,
|
cargo,
|
||||||
debhelper-compat (= 13),
|
debhelper (>= 10),
|
||||||
meson (>=0.51.0),
|
meson (>=0.51.0),
|
||||||
ninja-build,
|
ninja-build,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
libbsd-dev,
|
|
||||||
libglib2.0-dev,
|
libglib2.0-dev,
|
||||||
libgnome-desktop-3-dev,
|
libgnome-desktop-3-dev,
|
||||||
libgtk-3-dev,
|
libgtk-3-dev,
|
||||||
@ -21,30 +20,28 @@ Build-Depends:
|
|||||||
librust-gtk+v3-22-dev (>= 0.5),
|
librust-gtk+v3-22-dev (>= 0.5),
|
||||||
librust-gtk-sys-dev,
|
librust-gtk-sys-dev,
|
||||||
librust-maplit-1-dev (>= 1.0),
|
librust-maplit-1-dev (>= 1.0),
|
||||||
|
librust-regex-1-dev (>= 1.1),
|
||||||
librust-serde-derive-1-dev (>= 1.0),
|
librust-serde-derive-1-dev (>= 1.0),
|
||||||
librust-serde-yaml-0.8-dev (>= 0.8),
|
librust-serde-yaml-0.8-dev (>= 0.8),
|
||||||
librust-xkbcommon-0.4+wayland-dev (>= 0.4),
|
librust-xkbcommon-0.4+wayland-dev (>= 0.4),
|
||||||
librust-zbus-dev (>=1.0),
|
|
||||||
libwayland-dev (>= 1.16),
|
libwayland-dev (>= 1.16),
|
||||||
lsb-release,
|
lsb-release,
|
||||||
python3,
|
python3,
|
||||||
python3-ruamel.yaml,
|
rustc,
|
||||||
rustc-mozilla,
|
|
||||||
wayland-protocols (>= 1.14),
|
wayland-protocols (>= 1.14),
|
||||||
Standards-Version: 4.1.3
|
Standards-Version: 4.1.3
|
||||||
Homepage: https://gitlab.gnome.org/World/Phosh/squeekboard
|
Homepage: https://source.puri.sm/Librem5/squeekboard
|
||||||
|
|
||||||
Package: squeekboard
|
Package: squeekboard
|
||||||
Architecture: linux-any
|
Architecture: linux-any
|
||||||
Depends:
|
Depends:
|
||||||
# for Greek polytonic readability
|
|
||||||
fonts-gfs-didot-classic,
|
|
||||||
# for the Adwaita-dark theme
|
# for the Adwaita-dark theme
|
||||||
gnome-themes-extra-data,
|
gnome-themes-extra-data,
|
||||||
${shlibs:Depends},
|
${shlibs:Depends},
|
||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
Breaks:
|
Breaks:
|
||||||
librem5-base (<< 24),
|
librem5-base (<< 24),
|
||||||
|
phosh (<= 0.10),
|
||||||
Description: On-screen keyboard for Wayland
|
Description: On-screen keyboard for Wayland
|
||||||
Virtual keyboard supporting Wayland, built primarily for the Librem 5 phone.
|
Virtual keyboard supporting Wayland, built primarily for the Librem 5 phone.
|
||||||
|
|
||||||
|
|||||||
62
debian/control-newer
vendored
62
debian/control-newer
vendored
@ -1,62 +0,0 @@
|
|||||||
Source: squeekboard
|
|
||||||
Section: x11
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm>
|
|
||||||
Build-Depends:
|
|
||||||
cargo,
|
|
||||||
debhelper-compat (= 13),
|
|
||||||
meson (>=0.51.0),
|
|
||||||
ninja-build,
|
|
||||||
pkg-config,
|
|
||||||
libbsd-dev,
|
|
||||||
libglib2.0-dev,
|
|
||||||
libgnome-desktop-3-dev,
|
|
||||||
libgtk-3-dev,
|
|
||||||
libfeedback-dev,
|
|
||||||
librust-bitflags-dev (>= 1.0),
|
|
||||||
librust-clap-dev (>= 2.32),
|
|
||||||
librust-gio+v2-58-dev,
|
|
||||||
librust-glib+v2-58-dev,
|
|
||||||
librust-glib-sys-dev,
|
|
||||||
librust-gtk+v3-22-dev (>= 0.5),
|
|
||||||
librust-gtk-sys-dev,
|
|
||||||
librust-maplit-1-dev (>= 1.0),
|
|
||||||
librust-serde-derive-1-dev (>= 1.0),
|
|
||||||
librust-serde-yaml-0.8-dev (>= 0.8),
|
|
||||||
librust-xkbcommon-0.4+wayland-dev (>= 0.4),
|
|
||||||
librust-zbus-dev (>= 1.9),
|
|
||||||
libwayland-dev (>= 1.16),
|
|
||||||
lsb-release,
|
|
||||||
python3,
|
|
||||||
python3-ruamel.yaml,
|
|
||||||
rustc,
|
|
||||||
wayland-protocols (>= 1.14),
|
|
||||||
Standards-Version: 4.1.3
|
|
||||||
Homepage: https://gitlab.gnome.org/World/Phosh/squeekboard
|
|
||||||
|
|
||||||
Package: squeekboard
|
|
||||||
Architecture: linux-any
|
|
||||||
Depends:
|
|
||||||
# for Greek polytonic readability
|
|
||||||
fonts-gfs-didot-classic,
|
|
||||||
# for the Adwaita-dark theme
|
|
||||||
gnome-themes-extra-data,
|
|
||||||
${shlibs:Depends},
|
|
||||||
${misc:Depends},
|
|
||||||
Breaks:
|
|
||||||
librem5-base (<< 24),
|
|
||||||
Description: On-screen keyboard for Wayland
|
|
||||||
Virtual keyboard supporting Wayland, built primarily for the Librem 5 phone.
|
|
||||||
|
|
||||||
Package: squeekboard-devel
|
|
||||||
Architecture: linux-any
|
|
||||||
Depends:
|
|
||||||
python3,
|
|
||||||
python3-gi,
|
|
||||||
${shlibs:Depends},
|
|
||||||
${misc:Depends},
|
|
||||||
Description: Resources for making Squeekboard layouts
|
|
||||||
Tools for creating and testing Squeekboard layouts:
|
|
||||||
.
|
|
||||||
* squeekboard-entry
|
|
||||||
* squeekboard-test-layout
|
|
||||||
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -1,6 +1,6 @@
|
|||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Upstream-Name: squeekboard
|
Upstream-Name: squeekboard
|
||||||
Source: https://gitlab.gnome.org/World/Phosh/squeekboard
|
Source: https://source.puri.sm/Librem5/squeekboard
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
Copyright: 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
Copyright: 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
||||||
|
|||||||
8
debian/rules
vendored
8
debian/rules
vendored
@ -25,10 +25,10 @@ export RUSTFLAGS = --remap-path-prefix=$(CURDIR)=/remap-pwd $(xgot)
|
|||||||
|
|
||||||
|
|
||||||
distrel := $(shell lsb_release --codename --short)
|
distrel := $(shell lsb_release --codename --short)
|
||||||
ifneq (,$(filter $(distrel),bookworm))
|
ifneq (,$(filter $(distrel),buster amber))
|
||||||
newer = true
|
legacy = true
|
||||||
else
|
else
|
||||||
newer = false
|
legacy = false
|
||||||
endif
|
endif
|
||||||
|
|
||||||
%:
|
%:
|
||||||
@ -38,6 +38,6 @@ endif
|
|||||||
# causing Cargo to refuse to build with a crates.io copy
|
# causing Cargo to refuse to build with a crates.io copy
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
[ ! -f Cargo.lock ] || rm Cargo.lock
|
[ ! -f Cargo.lock ] || rm Cargo.lock
|
||||||
dh_auto_configure -- -Dnewer=$(newer) -Donline=false
|
dh_auto_configure -- -Dlegacy=$(legacy)
|
||||||
|
|
||||||
override_dh_autoreconf:
|
override_dh_autoreconf:
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user